Clean up .jshintrc

jshint does not support `trailing` as of v1.5.0.

Remove `maxlen` too, jscs provides better implementation.

Fix definition of global mocha variables - mark them as immutable.
This commit is contained in:
Miroslav Bajtoš 2014-11-13 15:33:23 +01:00
parent e2aff71bf9
commit 83723379a2
1 changed files with 6 additions and 8 deletions

View File

@ -7,18 +7,16 @@
"undef": true,
"unused": true,
"quotmark": "single",
"maxlen": 80,
"trailing": true,
"newcap": true,
"nonew": true,
"sub": true,
"unused": "vars",
"globals": {
"describe": true,
"it": true,
"before": true,
"beforeEach": true,
"after": true,
"afterEach": true
"describe": false,
"it": false,
"before": false,
"beforeEach": false,
"after": false,
"afterEach": false
}
}