Initial commit of jshint rules
This commit is contained in:
parent
ab9b6896c1
commit
eda32a4f8e
1 changed files with 16 additions and 0 deletions
16
.jshintrc
Normal file
16
.jshintrc
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"curly": true,
|
||||
"eqeqeq": true,
|
||||
"immed": true,
|
||||
"latedef": "nofunc",
|
||||
"newcap": true,
|
||||
"noarg": true,
|
||||
"sub": true,
|
||||
"undef": true,
|
||||
"unused": true,
|
||||
"boss": true,
|
||||
"eqnull": true,
|
||||
"node": true,
|
||||
"maxerr": 2000,
|
||||
"esversion": 6
|
||||
}
|
Loading…
Reference in a new issue