How to disable warnings in linter-csslint on Atom like iDs selector warning
Asked
Active
Viewed 1,488 times
1 Answers
0
You can create a .csslintrc
file in your project's directory as specified here. Inside the file, you can add this:
{
"ignore": [
"ids"
]
}
You can see the full list of rules here.

Saad
- 49,729
- 21
- 73
- 112
-
Thanks, .For each project a .csslintrc file in the directory? I really do not understand how to do it, in sublime text. Add a few lines of code and go – Daniel Jul 03 '17 at 03:48
-
You could try adding a `.csslintrc` to your home `~` directory, although I haven't tried it. If that doesn't work, try opening an issue on the GitHub repo for `linter-csslint`. This is just my opinion, but I think it's good practice to include config files like this in your project so that if anyone else is also developing it's clear to them what your style guidelines are, etc. – Saad Jul 03 '17 at 04:49
-
Sorry, I could not solve the problem, Do you know how I can find the file `Brackets/brackets.json` ? https://stackoverflow.com/questions/26189103/how-to-ignore-specific-warnings-outputted-by-the-csslint-extension-for-brackets – Daniel Jul 11 '17 at 04:44