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