Skip to content

Instantly share code, notes, and snippets.

@rachelbaker
Created May 7, 2015 20:29
Show Gist options
  • Save rachelbaker/77b957a01e3ebb3a4e1b to your computer and use it in GitHub Desktop.
Save rachelbaker/77b957a01e3ebb3a4e1b to your computer and use it in GitHub Desktop.
A basic started JSHint configuration.
{
"boss": true,
"curly": true,
"eqeqeq": true,
"eqnull": true,
"es3": true,
"expr": true,
"immed": true,
"noarg": true,
"onevar": true,
"quotmark": "single",
"trailing": true,
"undef": true,
"unused": true,
"browser": true,
"globals": {
"_": false,
"Backbone": false,
"jQuery": false,
"JSON": false,
"wp": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment