nim-datastore/config.nims
Dmitriy Ryajov 962c08c101
cleanup results import and some warnings (#64)
* cleanup results import and some warnings

* add some more push raises
2024-05-15 10:37:01 -07:00

17 lines
446 B
Nim

--threads:on
--tlsEmulation:off
--styleCheck:usages
--styleCheck:error
when (NimMajor, NimMinor) == (1, 2):
switch("hint", "Processing:off")
switch("hint", "XDeclaredButNotUsed:off")
switch("warning", "ObservableStores:off")
when (NimMajor, NimMinor) > (1, 2):
switch("hint", "XCannotRaiseY:off")
# begin Nimble config (version 2)
when withDir(thisDir(), system.fileExists("nimble.paths")):
include "nimble.paths"
# end Nimble config