Skip to content

Commit 33f985f

Browse files
committed
fix(lint): enable es5 mode for eslint until we move to es6
1 parent e2585fc commit 33f985f

1 file changed

Lines changed: 1 addition & 37 deletions

File tree

.eslintrc

Lines changed: 1 addition & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"env": {
44
"node": true,
55
"mocha": true,
6-
"es6": true
6+
"es6": false
77
},
88
"parserOptions": {
99
"ecmaVersion": 9,
@@ -13,42 +13,6 @@
1313
"impliedStrict": true,
1414
"jsx": false
1515
}
16-
},
17-
"rules": {
18-
"indent": [
19-
"error",
20-
2
21-
],
22-
"linebreak-style": [
23-
"error",
24-
"unix"
25-
],
26-
"quotes": [
27-
"error",
28-
"single"
29-
],
30-
"semi": [
31-
"error",
32-
"always"
33-
],
34-
"no-console": [
35-
"error"
36-
],
37-
"no-var": [
38-
"error"
39-
],
40-
"prefer-const": ["error", {
41-
"destructuring": "any",
42-
"ignoreReadBeforeAssign": false
43-
}],
44-
"no-unused-vars": [
45-
"error",
46-
{
47-
"vars": "all",
48-
"args": "none",
49-
"ignoreRestSiblings": false
50-
}
51-
]
5216
}
5317
}
5418

0 commit comments

Comments
 (0)