Skip to content

Instantly share code, notes, and snippets.

@Gerst20051
Forked from artanisdesign/.jshintrc
Last active August 29, 2015 14:11
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 Gerst20051/7c6f1e1ea61af914a38e to your computer and use it in GitHub Desktop.
Save Gerst20051/7c6f1e1ea61af914a38e to your computer and use it in GitHub Desktop.
Titanium .jshintrc
{
"bitwise": true,
"camelcase": true,
"eqeqeq": true,
"newcap": true,
"indent": 4,
"unused": true,
"onevar": true,
"undef": true,
"trailing": true,
"latedef": true,
"curly" : true,
"newcap": true,
"sub": true,
"node":true,
"globals": {
"Ti": false,
"Titanium": false,
"Alloy": false,
"describe": false,
"it": false,
"before": false,
"beforeEach": false,
"after": false,
"afterEach": false,
"should": false,
"$" : false,
"Backbone": false,
"OS_IOS" : false,
"OS_ANDROID" : false,
"_" : false,
"ENV_DEV" : false,
"ENV_TEST" : false,
"ENV_PRODUCTION" : false,
"DIST_ADHOC" : false,
"DIST_STORE" : false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment