Created
August 27, 2012 06:21
-
-
Save ValeriiVasin/3486197 to your computer and use it in GitHub Desktop.
SublimeLinter user settings
This file contains hidden or 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
{ | |
// http://www.jshint.com/docs/ | |
"jshint_options": { | |
// prohibits the use of explicitly undeclared variables | |
"undef": true, | |
// prohibits the use of a variable before it was defined | |
"latedef": true, | |
// not dropping curlies | |
"curly": true, | |
// document, navigator, etc... | |
"browser": true, | |
"jquery": true, | |
"node": true, | |
// escape, unescape | |
"nonstandard": false, | |
// console, alert | |
"devel": true, | |
"eqnull": true, | |
"boss": true, | |
"sub": true, | |
"smarttabs": true, | |
// requires strict mode | |
"strict": true, | |
"newcap": true, // new MyConstrutor() | |
"predef": [ | |
"App", | |
"DEBUG", | |
"LOG", | |
"LiveJournal" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment