11 "extends": ["eslint:recommended", "plugin:vue/recommended", "prettier", "prettier/vue"],
14 "comma-dangle": "off",
16 "eqeqeq": ["warn", "allow-null"],
17 "strict": ["error", "safe"],
18 "no-unused-vars": ["error"],
19 "no-extra-boolean-cast": ["warn"],
26 "max-statements-per-line": [
32 "no-debugger": "error",
33 "no-dupe-keys": "error",
34 "no-unsafe-finally": "error",
36 "no-useless-call": "error",
37 "no-spaced-func": "error",
38 "no-useless-escape": "warn",
39 "max-statements": ["warn", 30],
40 "max-depth": ["error", 4],
41 "no-throw-literal": ["error"],
42 "no-sequences": "error",
43 "no-warning-comments": [
46 "terms": ["fixme", "xxx"],
47 "location": "anywhere"
52 "no-nested-ternary": "warn",
53 "no-whitespace-before-property": "error",
54 "no-trailing-spaces": ["error"],
55 "space-in-parens": ["warn", "never"],
56 "max-nested-callbacks": ["error", 6],
58 "no-mixed-spaces-and-tabs": "error",
59 "no-negated-condition": "warn",
60 "no-unneeded-ternary": "error",
61 "no-use-before-define": ["warn", { "variables": true, "functions": true, "classes": true }],
63 "no-param-reassign": "warn",
86 "node/no-missing-require": "error",
87 "node/no-missing-import": "error",
88 "node/no-unsupported-features/es-syntax": ["error", {
89 "version": ">=14.0.0 <15.0.0",
92 "node/no-unsupported-features/es-builtins":["error", {
93 "version": ">=14.0.0 <15.0.0",
96 "vue/no-v-html": "off"