Skip to content

Instantly share code, notes, and snippets.

@nefarioustim
Last active December 18, 2015 02:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nefarioustim/5709656 to your computer and use it in GitHub Desktop.
Save nefarioustim/5709656 to your computer and use it in GitHub Desktop.
My SublimeLinter user settings
/*
SublimeLinter user settings
*/
{
"sublimelinter": true,
"sublimelinter_mark_style": "outline",
"sublimelinter_gutter_marks": true,
// CSSLint? GTFO
"csslint_options":
{
"adjoining-classes": false,
"box-model": false,
"box-sizing": false,
"compatible-vendor-prefixes": false,
"display-property-grouping": false,
"duplicate-background-images": false,
"duplicate-properties": false,
"empty-rules": false,
"errors": false,
"fallback-colors": false,
"floats": false,
"font-faces": false,
"font-sizes": false,
"gradients": false,
"ids": false,
"import": false,
"important": false,
"known-properties": false,
"outline-none": false,
"overqualified-elements": false,
"qualified-headings": false,
"regex-selectors": false,
"rules-count": false,
"shorthand": false,
"star-property-hack": false,
"text-indent": false,
"underscore-property-hack": false,
"unique-headings": false,
"universal-selector": false,
"vendor-prefix": false,
"zero-units": false
},
"jshint_options":
{
"jquery": true,
"browser": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"immed": true,
"indent": 4,
"latedef": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": false,
"quotmark": "double",
"undef": true,
"unused": true,
"strict": false,
"trailing": true,
"onevar": false,
"white": true,
"maxerr": 10,
"maxlen": 120
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment