Skip to content

Commit 345ba69

Browse files
System AdministratorSystem Administrator
authored andcommitted
fix webpack upgrade bug
1 parent 80a973c commit 345ba69

File tree

6 files changed

+759
-829
lines changed

6 files changed

+759
-829
lines changed

.eslintrc.js

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
module.exports = {
2-
"env": {
3-
"browser": true,
4-
"node": true,
5-
"commonjs": true,
6-
"es6": true
2+
env: {
3+
browser: true,
4+
node: true,
5+
commonjs: true,
6+
es6: true
77
},
8-
"extends": "eslint:recommended",
8+
extends: 'eslint:recommended',
99
rules: {
10-
"indent": 0,
11-
"no-extra-boolean-cast": 0,
12-
"no-console": 0,
13-
"no-redeclare": 1,
14-
"one-var-declaration-per-line": [2, "always"],
15-
"no-mixed-spaces-and-tabs": 0,
16-
"semi": 2,
17-
"no-useless-escape": 0,
18-
"no-control-regex": 0
10+
indent: 0,
11+
'no-extra-boolean-cast': 0,
12+
'no-console': 0,
13+
'no-redeclare': 1,
14+
'one-var-declaration-per-line': [2, 'always'],
15+
'no-mixed-spaces-and-tabs': 0,
16+
semi: 0,
17+
'no-useless-escape': 0,
18+
'no-control-regex': 0
1919
},
20-
"globals": {
21-
"describe": true,
22-
"it": true
20+
globals: {
21+
describe: true,
22+
it: true
2323
}
24-
};
24+
}

0 commit comments

Comments
 (0)