Skip to content

Instantly share code, notes, and snippets.

@microadam
Last active August 29, 2015 14:00
Show Gist options
  • Save microadam/11266020 to your computer and use it in GitHub Desktop.
Save microadam/11266020 to your computer and use it in GitHub Desktop.
Example .jshintrc
{ "asi": true
, "boss": true
, "browser": true
, "camelcase": true
, "curly": false
, "devel": false
, "devel": true
, "eqeqeq": true
, "eqnull": true
, "es5": false
, "evil": false
, "immed": false
, "indent": 2
, "jquery": true
, "latedef": false
, "laxbreak": true
, "laxcomma": true
, "maxcomplexity": 8
, "maxdepth": 4
, "maxstatements": 25
, "maxlen": 120
, "newcap": true
, "node": true
, "noempty": false
, "nonew": true
, "predef":
[ "Backbone"
, "describe"
, "it"
, "before"
, "beforeEach"
, "after"
, "afterEach"
, "B64"
, "uEvent"
]
, "quotmark": "single"
, "smarttabs": true
, "strict": false
, "trailing": false
, "undef": true
, "unused": true
, "-W079": true
, "-W069": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment