Skip to content

Instantly share code, notes, and snippets.

@blakeembrey
Last active December 16, 2015 21:09
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 blakeembrey/5497413 to your computer and use it in GitHub Desktop.
Save blakeembrey/5497413 to your computer and use it in GitHub Desktop.
Sublime Linter Config
{
"sublimelinter_notes": true,
"annotations": ["TODO", "README", "FIXME", "DEBUG"],
"sublimelinter_mark_style": "none",
"sublimelinter_gutter_marks": true,
"csslint_options":
{
"adjoining-classes": "warning",
"box-model": false,
"box-sizing": "warning",
"compatible-vendor-prefixes": "warning",
"display-property-grouping": true,
"duplicate-background-images": "warning",
"duplicate-properties": true,
"empty-rules": true,
"errors": true,
"fallback-colors": "warning",
"floats": "warning",
"font-faces": "warning",
"font-sizes": "warning",
"gradients": "warning",
"ids": "warning",
"import": "warning",
"important": "warning",
"known-properties": true,
"outline-none": "warning",
"overqualified-elements": "warning",
"qualified-headings": "warning",
"regex-selectors": "warning",
"rules-count": "warning",
"shorthand": "warning",
"text-indent": "warning",
"unique-headings": "warning",
"universal-selector": "warning",
"vendor-prefix": true,
"zero-units": "warning"
},
"javascript_linter": "jshint",
"jshint_options":
{
"node": true,
"browser": true,
"devel": true,
"nonstandard": true,
"worker": true,
"es5": true,
"esnext": true,
"bitwise": false,
"boss": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"eqnull": true,
"expr": true,
"forin": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"strict": false,
"undef": true,
"unused": true,
"trailing": true,
"smarttabs": true,
"immed": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment