Initial commit of jshint rules

This commit is contained in:
pyoor 2017-04-06 12:56:38 +02:00
parent ab9b6896c1
commit eda32a4f8e
1 changed files with 16 additions and 0 deletions

16
.jshintrc Normal file
View 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
}