We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7f785d5 + 9463439 commit 4221a2aCopy full SHA for 4221a2a
.eslintrc
@@ -35,6 +35,8 @@
35
"no-unused-vars": [2],
36
"no-use-before-define": [2, "nofunc"],
37
"no-loop-func": [2],
38
- "no-console": [0]
+ "no-console": [0],
39
+ "no-unexpected-multiline": [2],
40
+ "no-unused-labels": [2]
41
},
42
}
package.json
@@ -82,9 +82,9 @@
82
"browserify": "^13.0.0",
83
"browserify-transform-tools": "^1.5.1",
84
"ecstatic": "^1.4.0",
85
- "eslint": "^1.10.3",
+ "eslint": "^2.1.0",
86
"falafel": "^1.2.0",
87
- "glob": "^6.0.4",
+ "glob": "^7.0.0",
88
"jasmine-core": "^2.3.4",
89
"karma": "^0.13.15",
90
"karma-browserify": "^5.0.1",
src/.eslintrc
@@ -3,6 +3,10 @@
3
"env": {
4
"browser": true
5
6
+ "globals": {
7
+ "Promise": true,
8
+ "Uint8Array": true
9
+ },
10
"rules": {
11
"strict": [2, "global"]
12
0 commit comments