--verbosity:0 didn't help also, I don't wanna pipe / filter (not good to rely on shell for that: error prone, can mess up with coloring, not cross platform) ideally there'd be some extensible option, eg:
nim c --disp_hints:Processing=false,SuccessX=false,XDeclaredButNotUsed=false,Link=false,Conf=false
maybe like this?
nim c --verbosity:0 --hints:off themodule
You can also put in any of your nim.cfgs
hint[Processing]=off
You can also disable other categories of diagnostics besides "Processing" similarly.thanks! embarassed to have asked this... somehow hint[Conf]=off doesn't seem to work (the other ones work); maybe because without that hint it'd be hard to see which configs are being used; in any case would be nice to mention this in nim --advanced entry for hints
EDIT
passing '--hint[Conf]:on' on cmd line will disable all Conf hints;
but 'hint[Conf]:on' on project/nim.cfg will only applies to entries seen after that point
Hint: used config file '/Users/timothee/.choosenim/toolchains/nim-#devel/config/nim.cfg' [Conf] # will stay on Hint: used config file '/Users/timothee/.config/nim.cfg' [Conf] # will stay on Hint: used config file 'project/nim.cfg' [Conf] #only this one will be off
maybe not ideal but makes sense...