How do I turn off dlint?
App Development5 posts477 views9 likesLast activity Jun 2020
MA
Martin_HuschenbettOP
Jun 2020Hello everyone,
I’m currently working on somebody else’s codebase and they don’t seem to particularly care about fixing the warnings produced by dlint. Thus, my “Problems” view is overflowing with warnings right now. Is there a way to (temporarily) disable dlint completely?
Many thanks,
Martin.
SH
shaynefletcher
Jun 2020I know of daml build --without-dlint will that do the trick?
MA
Martin_Huschenbett
Jun 2020Thanks a lot for your answer @shaynefletcher. That helps.
Is there also a way to disable dlint in DAML Studio?
SH
shaynefletcher
Jun 2020I believe that if you put - ignore: {} in your project’s .dlint.yaml and restart your IDE that will likely have the effect you’re looking for.
MA
Martin_Huschenbett
Jun 2020Indeed, that does the job. Thank you so much!