Skip to content

Instantly share code, notes, and snippets.

@robinboehm
Created July 25, 2014 08:29
Show Gist options
  • Save robinboehm/5c677e54c0a5751bc764 to your computer and use it in GitHub Desktop.
Save robinboehm/5c677e54c0a5751bc764 to your computer and use it in GitHub Desktop.
Example JSHint
{
"node": true,
"browser": true,
"es5": false,
"esnext": true,
"bitwise": true,
"camelcase": false,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 4,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": false,
"trailing": true,
"smarttabs": true,
"globals": {
"$": false,
"angular": false,
"afterEach": false,
"beforeEach": false,
"confirm": false,
"context": false,
"describe": false,
"expect": false,
"it": false,
"inject": false,
"jasmine": false,
"runs": false,
"spyOn": false,
"spyOnEvent": false,
"waitsFor": false,
"jQuery": false,
"alert": false,
"Prism": false,
"Showdown": false,
"browser": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment