Подскажите как настроить csslint в ST3 на Ubuntu 14.04. Поставил через npm csslint, в Sublime через PM установил SublimeLinter и csslint, но подсветка ошибок не работает. Ошибок в логах нет.
Настройки SublimeLinter
{
"user": {
"debug": false,
"delay": 0.25,
"error_color": "D02000",
"gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme",
"gutter_theme_excludes": [],
"lint_mode": "background",
"linters": {},
"mark_style": "outline",
"no_column_highlights_line": false,
"paths": {
"linux": [],
"osx": [],
"windows": []
},
"python_paths": {
"linux": [],
"osx": [],
"windows": []
},
"rc_search_limit": 3,
"shell_timeout": 10,
"show_errors_on_save": false,
"show_marks_in_minimap": true,
"syntax_map": {
"html (django)": "html",
"html (rails)": "html",
"html 5": "html",
"php": "html",
"python django": "python"
},
"warning_color": "DDB700",
"wrap_find": true
}
}
Настройки csslint
{
// Path to the csslint jar.
// Leave false to use bundled version of CSSLint.
"csslint_rhino_js": false,
// Path to Rhino.
// Leave false to use bundled version of Rhino.
"rhino_path": false,
// Errors/Warnings/Ignore: refer to https://github.com/stubbornella/csslint/wiki/Command-line-interface
// CSSLint rules you wish to define as errors. Must be an array. Leave blank to include all default rules.
"errors": [],
// CSSLint rules you wish to define as warnings. Must be an array. Leave blank to include all default rules.
"warnings": [],
// CSSLint rules you wish to ignore. Must be an array. Leave blank to include all default rules.
"ignore": [],
// Whether or not you want to lint every time a document is saved.
"run_on_save": false
}