-
I'd like to disable some eslint rules for all files, but I don't know how. Adding |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
You can set it per file like |
Beta Was this translation helpful? Give feedback.
-
This doesn't seem to work for create react app (with typescript apps). It makes it very hard to distinguish between what's actually an error and something that I just haven't hooked into the code yet. |
Beta Was this translation helpful? Give feedback.
You can set it per file like
/* eslint-disable no-undef, no-unused-vars */
, but I don't know of a supported global way.