-1

In sublime text 3 with the sublimelinter plugin (linter / css) how to disable these warnings IDs and padding specifically warnings

Daniel
  • 103
  • 3

1 Answers1

0

.csslintrc

CSSLint allows you to disable its rules using the .csslintrc in your project root.

Example:

{
    "ids": false
}

.sublimelinterrc

The same thing can be achieved using Sublime Linter's own configuration file, which is basically making use of CSSLint's --ignore command-line parameter.

Example:

{
    "linters": {
        "csslint": {
          "ignore": ["ids]
        }
      }
}
idleberg
  • 12,634
  • 7
  • 43
  • 70