Skip to content

Commit

Permalink
fix(lint): Add rules for eslint
Browse files Browse the repository at this point in the history
Modify .eslintrc to include rules resulting in false positive or skipping of required checks
  • Loading branch information
fusionstrings committed Aug 3, 2015
1 parent 5114480 commit 0d48044
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
{
"parser": "babel-eslint",
"env": {
"node": true,
"browser": true,
"es6": true,
},
"globals": {
"DocumentFragment": true,
"expect": true,
"it": true,
"describe": true,
"beforeEach": true,
"runs": true,
"spyOn": true,
"spyOnEvent": true,
"waitsFor": true,
"expect": true,
"afterEach": true,
"var2": false
},
"rules": {
"strict": 0,
"no-underscore-dangle": 0,
Expand All @@ -19,9 +38,7 @@
"no-loop-func": 0,
"no-unreachable": 0,
"no-labels": 0,
"no-process-exit": 0
},
"env": {
"node": true
"no-process-exit": 0,
"quotes": [1, "single"]
}
}

0 comments on commit 0d48044

Please sign in to comment.