Created
April 21, 2012 00:02
-
-
Save dannygarcia/2432747 to your computer and use it in GitHub Desktop.
Sublime Linter User Settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"jshint_options" : | |
{ | |
"adsafe": false, | |
"bitwise": false, | |
"newcap": true, | |
"eqeqeq": true, | |
"immed": true, | |
"nomen": false, | |
"onevar": true, | |
"plusplus": false, | |
"regexp": false, | |
"safe": false, | |
"strict": false, | |
"undef": true, | |
"white": true, | |
"cap": false, | |
"css": false, | |
"debug": false, | |
"es5": false, | |
"evil": false, | |
"forin": false, | |
"fragment": false, | |
"laxbreak": false, | |
"on": false, | |
"sub": false, | |
"maxlen": 160, | |
"indent": 4, | |
"maxerr": 100, | |
"passfail": false, | |
"predef": [ | |
"$", | |
"jQuery", | |
"console", | |
"Class", | |
"Modernizr", | |
"History", | |
"RED", | |
"red", | |
"FB", | |
"Scroller" | |
], | |
"browser": true, | |
"rhino": false, | |
"windows": false, | |
"widget": false, | |
"devel": false, | |
"loopfunc": true, | |
"asi": false, | |
"boss": false, | |
"couch": true, | |
"curly": true, | |
"noarg": true, | |
"node": true, | |
"noempty": true, | |
"nonew": true | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
SublimeLinter default settings | |
*/ | |
{ | |
/* | |
Sets the mode in which SublimeLinter runs: | |
true - Linting occurs in the background as you type (the default). | |
false - Linting only occurs when you initiate it. | |
"load-save" - Linting occurs only when a file is loaded and saved. | |
*/ | |
"sublimelinter": true, | |
/* | |
Maps linters to executables for non-built in linters. If the executable | |
is not in the default system path, or on posix systems in /usr/local/bin | |
or ~/bin, then you must specify the full path to the executable. | |
Linter names should be lowercase. | |
This is the effective default map; your mappings may override these. | |
"sublimelinter_executable_map": | |
{ | |
"perl": "perl", | |
"php": "php", | |
"ruby": "ruby" | |
}, | |
*/ | |
"sublimelinter_executable_map": | |
{ | |
}, | |
/* | |
Maps syntax names to linters. This allows variations on a syntax | |
(for example "Python (Django)") to be linted. The key is | |
the base filename of the .tmLanguage syntax files, and the value | |
is the linter name (lowercase) the syntax maps to. | |
*/ | |
"sublimelinter_syntax_map": | |
{ | |
"Python Django": "python" | |
}, | |
// An array of linter names to disable. Names should be lowercase. | |
"sublimelinter_disable": | |
[ | |
], | |
/* | |
The minimum delay in seconds (fractional seconds are okay) before | |
a linter is run when the "sublimelinter" setting is true. This allows | |
you to have background linting active, but defer the actual linting | |
until you are idle. When this value is greater than the built in linting delay, | |
errors are erased when the file is modified, since the assumption is | |
you don't want to see errors while you type. | |
*/ | |
"sublimelinter_delay": 0, | |
// If true, lines with errors or warnings will be filled in with the outline color. | |
"sublimelinter_fill_outlines": false, | |
// If true, lines with errors or warnings will have a gutter mark. | |
"sublimelinter_gutter_marks": false, | |
// If true, the find next/previous error commands will wrap. | |
"sublimelinter_wrap_find": true, | |
// If true, when the file is saved any errors will appear in a popup list | |
"sublimelinter_popup_errors_on_save": false, | |
// Javascript linter: "gjslint" to use the closure javascript linter (if available), | |
// or "jshint" to use the built in jshint linter. | |
"javascript_linter": "jshint", | |
// jshint: options for linting JavaScript. See http://jshint.com/#docs for more info. | |
// By deault, eval is allowed. | |
"jshint_options": | |
{ | |
"evil": true, | |
"regexdash": true, | |
"browser": true, | |
"wsh": true, | |
"trailing": true, | |
"sub": true | |
}, | |
// A list of command line options to send to gjslint. --nobeep is always sent. | |
"gjslint_options": | |
[ | |
], | |
// A list of gjslint error numbers to ignore. The list of error codes is here: | |
// http://closure-linter.googlecode.com/svn/trunk/closure_linter/errors.py | |
"gjslint_ignore": | |
[ | |
110 // line too long | |
], | |
// A list of pep8 error numbers to ignore. By default "line too long" errors are ignored. | |
// The list of error codes is in this file: https://github.com/jcrocholl/pep8/blob/master/pep8.py. | |
// Search for "Ennn:", where nnn is a 3-digit number. | |
"pep8_ignore": | |
[ | |
"E501" | |
], | |
/* | |
If you use SublimeLinter for pyflakes checks, you can ignore some of the "undefined name xxx" | |
errors (comes in handy if you work with post-processors, globals/builtins available only at runtime, etc.). | |
You can control what names will be ignored with the user setting "pyflakes_ignore". | |
Example: | |
"pyflakes_ignore": | |
[ | |
"some_custom_builtin_o_mine", | |
"A_GLOBAL_CONSTANT" | |
], | |
*/ | |
"pyflakes_ignore": | |
[ | |
], | |
/* | |
Ordinarily pyflakes will issue a warning when 'from foo import *' is used, | |
but it is ignored since the warning is not that helpful. If you want to see this warning, | |
set this option to false. | |
*/ | |
"pyflakes_ignore_import_*": true, | |
// Objective-J: if true, non-ascii characters are flagged as an error. | |
"sublimelinter_objj_check_ascii": false, | |
// Set to true to highlight annotations | |
"sublimelinter_notes": false, | |
// The set of annotation phrases to highlight | |
"annotations": ["TODO", "README", "FIXME"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks the PEP8 options were super helpful!