replace jshint w/ eslint

This commit is contained in:
daviskoh
2015-02-17 15:44:08 -05:00
parent 0c62b9e4ed
commit 4dc175dda4
3 changed files with 11 additions and 5 deletions

21
.eslintrc Normal file
View File

@@ -0,0 +1,21 @@
{
"browser": true,
"shadow": true,
"globals": {
"jasmine": true,
"describe": true,
"beforeEach": true,
"afterEach": true,
"spyOn": true,
"it": true,
"xit": true,
"expect": true,
"require": true,
"global": true,
"__dirname": true,
"module": true
},
"rules": {
"quotes": "single"
}
}