0
|
1 {
|
|
2 "env": {
|
|
3 "browser": true,
|
|
4 "commonjs": true,
|
|
5 "amd": true,
|
|
6 "node": true
|
|
7 },
|
|
8 "parserOptions": {
|
|
9 "ecmaFeatures": {
|
|
10 "jsx": true
|
|
11 },
|
|
12 "sourceType": "module"
|
|
13 },
|
|
14 "extends": "eslint:recommended",
|
|
15 "rules": {
|
|
16 "no-const-assign": "warn",
|
|
17 "no-this-before-super": "warn",
|
|
18 "no-undef": "error",
|
|
19 "no-unreachable": "warn",
|
|
20 "no-unused-vars": "warn",
|
|
21 "constructor-super": "warn",
|
|
22 "valid-typeof": "warn",
|
|
23 "semi" : "warn",
|
|
24 "no-invalid-this" : "error",
|
|
25 "no-console": "off"
|
|
26 }
|
|
27 } |