How to ignore specific warnings outputted by the CSSLint extension for Brackets

我的未来我决定 提交于 2019-12-03 04:18:19
StephenESC

The latest version of the CSSLint plugin has added support for customization through Bracket’s Global Preferences, and this now appears the best way to ignore specific warnings. Since this response was marked as correct, I just wanted to update it to be as accurate as possible.

Customizing CSSLint is (somewhat) explained in the README.md that comes with the plugin, but it doesn’t include an example for a non-json-savvy person like me. I couldn’t figure out how to alter the settings on my own, so I contacted the developer (https://github.com/cfjedimaster/brackets-csslint/pull/40) to get more specific instructions:

Click “Debug” and select “Open Preferences File”, and that will open the brackets.json preferences file in the editor window.

Next, tell CSSLint to ignore specific listing options by including the following at the bottom of (or anywhere in) the existing code, as long as it’s contained within the preference’s all-enclosing curly-brackets:

"csslint.options": {
    "linting-option": false,
    "linting-option": false,
    "linting-option": false
}

Be sure to swap out each “linting-option” with the id name of the rule you’d like it to ignore, ensuring they’re set to false. The id name is included in round brackets each time a css-linting warning pops up in Brackets:

…or they can be found by digging through the csslint.js file mentioned above.

And that’s it! Much nicer than having to comment out each rule every time the plugin gets updated. :)

For reference/comparison, my preference file now includes the following at the bottom:

"csslint.options": {
    "adjoining-classes": false,
    "box-model": false,
    "box-sizing": false,
    "duplicate-background-images": false,
    "ids": false,
    "order-alphabetical": false,
    "qualified-headings": false,
    "unique-headings": false,
    "universal-selector": false
}

…and, so far, it’s working perfectly.

Note: The developers/contributors said this new approach was designed to survive subsequent plugin updates. However, since Global Preferences are a relatively recent addition, they can’t guarantee the preference settings will stick when updating Brackets, so creating a backup of your brackets.json preference file is recommended. On a Mac it can found here: /Users/username/Library/Application Support/Brackets/brackets.json

Matthias Breuer
/*csslint box-model:false */

This works for me.

As of a few days ago Brackets CSSLint supports global preferences. Just open it with Debug > Open Preferences File and add the rules you want to ignore like in the following example:

"csslint.options": {
    "qualified-headings": false,
    "ids": false
}

You can find the rule names by opening up the csslint code and searching for the warning you want to hide.

This is much more ideal than editing the extension code by hand every time it updates.

In Sublime Text if you right click on a CSSLint page the menu will have the following path SublimeLinter > Mark Style > None.

This effectively leaves "warning" dots in the left margin without any highlighting in the code, so you don't get continually distracted by "in your face" reminders from the CSS police. You probably will remember that you're not writing perfect code, but at least won't be distracted while doing it, lol.

It's probably the same on other platforms/IDEs

"CSS... the Destroyer of Worlds, whose only remedy is a console that can interpret the insanity of Precedence, Specificity, and Inheritance."

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