Skip to content

Instantly share code, notes, and snippets.

@ValeriiVasin
Created August 27, 2012 06:21
Show Gist options
  • Save ValeriiVasin/3486197 to your computer and use it in GitHub Desktop.
Save ValeriiVasin/3486197 to your computer and use it in GitHub Desktop.
SublimeLinter user settings
{
// 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