本文介绍了在Atom上的linter-csslint中禁用警告(标识选择器)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何像iDs选择器一样在Atom的linter-csslint中禁用警告警告
How to disable warnings in linter-csslint on Atom like iDs selectorwarning
推荐答案
您可以按照此处.在文件内部,您可以添加以下内容:
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.
这篇关于在Atom上的linter-csslint中禁用警告(标识选择器)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!