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

余生颓废 提交于 2019-12-20 07:37:46

问题


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


回答1:


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.



来源:https://stackoverflow.com/questions/44875427/disable-warnings-ids-selector-in-linter-csslint-on-atom

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!