chore(project): add jshint config file
This commit is contained in:
parent
c723d43184
commit
47d82e1790
|
@ -0,0 +1,37 @@
|
||||||
|
{
|
||||||
|
"bitwise" : true,
|
||||||
|
"curly" : true,
|
||||||
|
"eqeqeq" : true,
|
||||||
|
"forin" : true,
|
||||||
|
"freeze" : true,
|
||||||
|
"immed" : true,
|
||||||
|
"latedef" : false,
|
||||||
|
"newcap" : true,
|
||||||
|
"noarg" : true,
|
||||||
|
"noempty" : false,
|
||||||
|
"nonew" : true,
|
||||||
|
"quotmark" : true,
|
||||||
|
"undef" : true,
|
||||||
|
"strict" : true,
|
||||||
|
"trailing" : true,
|
||||||
|
"maxdepth" : 5,
|
||||||
|
"maxstatements" : 50,
|
||||||
|
"maxcomplexity" : 10,
|
||||||
|
"maxlen" : 120,
|
||||||
|
"browser" : true,
|
||||||
|
"debug": true,
|
||||||
|
"strict": false,
|
||||||
|
"-W040": true,
|
||||||
|
"globals": {
|
||||||
|
"console": true,
|
||||||
|
"require": false,
|
||||||
|
"module": false,
|
||||||
|
"describe": false,
|
||||||
|
"it": false,
|
||||||
|
"jasmine": true,
|
||||||
|
"expect": true,
|
||||||
|
"fail": true,
|
||||||
|
"beforeEach": true,
|
||||||
|
"afterEach": true
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue