no browser rule and only warnings for unused

This commit is contained in:
soulgalore 2015-01-29 07:29:52 +01:00
parent dec61c883f
commit b1b7345438
1 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
{
"env": {
"browser": true,
"node": true
},
"rules": {
"quotes": [2, "single"],
"no-underscore-dangle":0,
"no-use-before-define": 0
"no-underscore-dangle": 0,
"no-use-before-define": 0,
"no-unused-vars": 1
}
}