Skip to content

Instantly share code, notes, and snippets.

@jwheare
Last active December 15, 2015 19:18
Show Gist options
  • Save jwheare/5309940 to your computer and use it in GitHub Desktop.
Save jwheare/5309940 to your computer and use it in GitHub Desktop.
Linter exceptions
{
"sublimelinter": "load-save",
"sublimelinter_popup_errors_on_save": true,
"sublimelinter_mark_style": "none",
"sublimelinter_gutter_marks": true,
"pep8_ignore": [
"E501", // line too long
"E302", // two blank lines before class
"E303", // too many blank lines between funcs
"E401", // multiple imports
"W191", // tab characters
"E701", // single line ifs
"E231", // missing whitespace after :
"W291", // extra whitespace at eol
"E225", // missing whitsepace around operator
"E261", // at least two spaces before inline comment
"E221", // multiple whitespace before operator
"E201", // white space after {
"E271", // multiple whitespace after keyword
"E251" // no spaces around keyword / parameter equals
],
"csslint_options": {
"ids": false
},
// http://jshint.com/docs/
"jshint_options": {
"supernew": true,
"eqnull": true,
"evil": true,
"regexdash": true,
"browser": true,
"wsh": true,
"sub": true,
"laxbreak": true,
"onecase": true
},
"sublimelinter_disable":
[
"git commit message"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment