Merge pull request #92 from siebrand/jshint

Add .jshintrc, .jshintignore and update .gitignore
This commit is contained in:
Amir E. Aharoni
2013-04-28 03:42:38 -07:00
3 changed files with 43 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1,5 +1,6 @@
*~
.*.swp
.idea
*.kate-swp
*.bak
/node_modules

2
.jshintignore Normal file
View File

@@ -0,0 +1,2 @@
grunt.js
src\jquery.uls.data.js

40
.jshintrc Normal file
View File

@@ -0,0 +1,40 @@
{
/* Common */
// Enforcing
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"quotmark": "single",
"trailing": true,
"undef": true,
"unused": true,
// Legacy
"onevar": true,
/* Local */
// Enforcing
"bitwise": true,
"forin": false,
"regexp": false,
"strict": true,
// Relaxing
"laxbreak": true,
"smarttabs": true,
"multistr": true,
// Environment
"browser": true,
"predef": [
"_",
"jQuery",
"QUnit"
]
}