Use eslint instead of jscs/jshint

Add .eslint.rc and test/.eslint.rc
This commit is contained in:
Tankred Hase
2017-08-15 15:22:15 +08:00
parent f224f32e66
commit 750cf3d897
3 changed files with 75 additions and 5 deletions

13
test/.eslintrc Normal file
View File

@@ -0,0 +1,13 @@
{
"extends": "../.eslintrc",
"rules": {
"no-shadow": 1
},
"globals": {
"expect": true,
"sinon": true
},
"env": {
"mocha": true
}
}