How do we add ignores to the linter? #601
Unanswered
scpedicini
asked this question in
Q&A
Replies: 1 comment
-
There isn't currently a way to configure this, but if you and others want it, I will consider adding options. You can avoid the d.ts warnings by installing types via NPM. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'd like to keep typescript checking/linting on if possible, but there are certain "errors" that it flags that I want to turn off such as no Used locals. I tried editing the
~/Library/Application Support/runjs/project/tsconfig.json
and addingnoUnusedLocals
set to false but it didn't appear to make a difference even after restarting the app.The errors about wanting to convert require statements to ignores, and then when you do, you get warnings about d.ts files missing are also kind of distracting, this is another set that I'd like to be able to disable.
Beta Was this translation helpful? Give feedback.
All reactions