Replies: 1 comment
-
That's been implemented and it will be part of v2 |
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
-
When using biome linter, I want to do batch ignore in some files, but as far as I can see, this is not possible. I want to prevent console log writing in the whole project, yes, but when I want to allow all console log operations in a file, I need to ignore it in the line above each console log code in biome. but I want to be able to ignore the rule I want in the whole file. there are some features in eslint on this subject, I mentioned below.
ESlint : https://eslint.org/docs/latest/use/configure/rules#disabling-rules
Disable All Rules
/* eslint-disable */
Disable Spesific Rule
/* eslint-disable no-console, no-alert */
Beta Was this translation helpful? Give feedback.
All reactions