chore: turn all eslint rules on as an error
This commit is contained in:
parent
c7930ccefb
commit
194ce9687c
78
.eslintrc
78
.eslintrc
|
|
@ -10,47 +10,47 @@
|
|||
"es6": true
|
||||
},
|
||||
"rules": {
|
||||
"no-console": 1,
|
||||
"block-scoped-var": 1,
|
||||
"curly": 1,
|
||||
"eqeqeq": 1,
|
||||
"no-global-assign": 1,
|
||||
"no-implicit-globals": 1,
|
||||
"no-labels": 1,
|
||||
"no-multi-str": 1,
|
||||
"comma-spacing": 1,
|
||||
"comma-style": 1,
|
||||
"func-call-spacing": 1,
|
||||
"keyword-spacing": 1,
|
||||
"linebreak-style": 1,
|
||||
"lines-around-comment": 1,
|
||||
"no-multiple-empty-lines": 1,
|
||||
"space-infix-ops": 1,
|
||||
"arrow-spacing": 1,
|
||||
"no-var": 1,
|
||||
"prefer-const": 1,
|
||||
"no-unsafe-negation": 1,
|
||||
"array-callback-return": 1,
|
||||
"dot-notation": 1,
|
||||
"no-eval": 1,
|
||||
"no-extend-native": 1,
|
||||
"no-extra-label": 1,
|
||||
"semi": 1,
|
||||
"space-before-blocks": 1,
|
||||
"space-in-parens": 1,
|
||||
"space-unary-ops": 1,
|
||||
"spaced-comment": 1,
|
||||
"arrow-body-style": 1,
|
||||
"arrow-parens": 1,
|
||||
"no-restricted-imports": 1,
|
||||
"no-duplicate-imports": 1,
|
||||
"no-useless-computed-key": 1,
|
||||
"no-useless-rename": 1,
|
||||
"rest-spread-spacing": 1,
|
||||
"no-trailing-spaces": 1,
|
||||
"no-console": 2,
|
||||
"block-scoped-var": 2,
|
||||
"curly": 2,
|
||||
"eqeqeq": 2,
|
||||
"no-global-assign": 2,
|
||||
"no-implicit-globals": 2,
|
||||
"no-labels": 2,
|
||||
"no-multi-str": 2,
|
||||
"comma-spacing": 2,
|
||||
"comma-style": 2,
|
||||
"func-call-spacing": 2,
|
||||
"keyword-spacing": 2,
|
||||
"linebreak-style": 2,
|
||||
"lines-around-comment": 2,
|
||||
"no-multiple-empty-lines": 2,
|
||||
"space-infix-ops": 2,
|
||||
"arrow-spacing": 2,
|
||||
"no-var": 2,
|
||||
"prefer-const": 2,
|
||||
"no-unsafe-negation": 2,
|
||||
"array-callback-return": 2,
|
||||
"dot-notation": 2,
|
||||
"no-eval": 2,
|
||||
"no-extend-native": 2,
|
||||
"no-extra-label": 2,
|
||||
"semi": 2,
|
||||
"space-before-blocks": 2,
|
||||
"space-in-parens": 2,
|
||||
"space-unary-ops": 2,
|
||||
"spaced-comment": 2,
|
||||
"arrow-body-style": 2,
|
||||
"arrow-parens": 2,
|
||||
"no-restricted-imports": 2,
|
||||
"no-duplicate-imports": 2,
|
||||
"no-useless-computed-key": 2,
|
||||
"no-useless-rename": 2,
|
||||
"rest-spread-spacing": 2,
|
||||
"no-trailing-spaces": 2,
|
||||
"no-control-regex": 0,
|
||||
"prettier/prettier": 0,
|
||||
"no-await-in-loop": 1,
|
||||
"no-await-in-loop": 2,
|
||||
"require-atomic-updates": 0,
|
||||
"no-prototype-builtins": 0
|
||||
}
|
||||
|
|
|
|||
|
|
@ -40,8 +40,6 @@ module.exports = async (ctx) => {
|
|||
for (let i = 0; i < ptype[key].dataArr.length; i++) {
|
||||
ptype[key].dataArr[i].category = ptype[key].dataCategory;
|
||||
}
|
||||
} else {
|
||||
console.log(key);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue