CSSLint
CSSLint plugin for Sublime Text 2 and 3
Details
Installs
- Total 72K
- Win 40K
- Mac 22K
- Linux 10K
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 4 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 3 | 0 | 1 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 2 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 |
Linux | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 6 | 0 | 0 | 1 |
Readme
- Source
- raw.githubusercontent.com
CSSLint plugin for Sublime Text 2
Takes the power of csslint.net and puts it into Sublime Text. Instead of copying and pasting your CSS into the csslint.net static analysis tool, all you have to do is hit ctrl + alt + c
and any warnings are displayed in your console. You can also click on those warnings in the console, and the specific line will be highlighted in your code.
You can also lint multiple files at a time by selecting them in the sidebar and selecing CSSLint Selection
. A new document will open and display the lint data, sorted by filename.
Installation
Copy this project folder to your Sublime Text Packages folder:
Windows: %APPDATA%\Sublime Text 2\Packages
Mac OS X: ~/Library/Application\ Support/Sublime\ Text\ 2/Packages/
Linux: ~/.config/sublime-text-2/Packages
Make sure Java is installed, and that
java
is in your PATH.Rename the package folder from “sublime-csslint” to “CSSLint”.
Usage
Use the Command Pallete (Windows and Linux: Ctrl+Shift+P, OSX: Command+Shift+P) and search for:
CSSLint: Run CSSLint
Use a keyboard shortcut. By default this is
ctrl + alt + c
. Change this by adding something like the following to your key bindings:{ "keys": ["ctrl+alt+c"], "command": "csslint" }
Advanced Usage
- Each CSS Lint rule has an ID that can be found in this file. (Look for blocks starting with
CSSLint.addRule
). - To ignore certain rules of CSS Lint, you will need to amend the Preferences > Package Settings > CSS Lint > User Preferences file. This will be blank by default. Just copy/paste the Default preferences file and then amend to suit.
- Therefore as an example:
{
// CSSLint rules you wish to ignore. Must be an array. Leave blank to include all default rules.
"ignore": ["floats","universal-selector","box-model","unqualified-attributes"]
}
This would ignore messages about floats, the universal selector, box-model and unqualified attributes.
Thanks
Much of this plugin has been copied from the sublime-jslint project. I liked how that plugin worked, and based this project off of it. Much thanks to fbzhong for that!
Other Notes
This plugin uses the Rhino command-line version of CSSLint, and includes the Rhino library.