Skip to content

Instantly share code, notes, and snippets.

@teologov
Forked from iliakan/.jshintrc
Created October 16, 2015 19:23
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 teologov/769a66d3b116157b3771 to your computer and use it in GitHub Desktop.
Save teologov/769a66d3b116157b3771 to your computer and use it in GitHub Desktop.
{
"maxerr": 25,
"latedef": "nofunc",
"browser": true,
"node": true, // for browserify require etc
"globals": ["$", "Prism", "describe", "it", "before", "after", "beforeEach", "afterEach"],
"indent": 2,
"camelcase": true,
"newcap": true,
"undef": true,
"multistr": true,
"esnext": true,
"noyield": true,
"devel": true,
"loopfunc": true,
"-W004": true,
"-W030": true, // for yield* ...
"-W078": true // allow setter w/o getter
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment