Disable warnings (ids selector) in linter-csslint on Atom?

后端 未结 1 542
旧时难觅i
旧时难觅i 2021-01-16 19:56

How to disable warnings in linter-csslint on Atom like iDs selector warning

相关标签:
1条回答
  • 2021-01-16 20:56

    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.

    0 讨论(0)
提交回复
热议问题