-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
64 lines (63 loc) · 2.02 KB
/
.eslintrc.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* eslint-env node */
require("@rushstack/eslint-patch/modern-module-resolution");
module.exports = {
root: true,
extends: ["plugin:vue/vue3-recommended", "eslint:recommended", "@vue/eslint-config-typescript"],
parserOptions: {
ecmaVersion: "latest"
},
rules: {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-namespace": "off",
"brace-style": ["error", "stroustrup"],
"comma-dangle": [0, "warn"],
"consistent-return": "off",
"constructor-super": "off",
"dot-notation": "off",
"getter-return": "off",
"lines-between-class-members": "off",
"max-classes-per-file": "off",
"max-len": "off",
"no-bitwise": "off",
"no-console": "off",
"no-const-assign": "off",
"no-continue": "off",
"no-debugger": "warn",
"no-dupe-args": "off",
"no-dupe-class-members": "off",
"no-dupe-keys": "off",
"no-empty": "off",
"no-func-assign": "off",
"no-new-symbol": "off",
"no-obj-calls": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"no-redeclare": "off",
"no-restricted-syntax": "off",
"no-return-assign": "off",
"no-shadow": "off",
"no-this-before-super": "off",
"no-undef": "off",
"no-unreachable": "off",
"no-unsafe-negation": "off",
"no-use-before-define": "off",
"prefer-const": "off",
"prefer-destructuring": "off",
"quote-props": "off",
"semi-style": ["error", "last"],
"valid-typeof": "off",
"vue/attribute-hyphenation": "off",
"vue/component-definition-name-casing": "off",
"vue/html-closing-bracket-newline": "off",
"vue/multi-word-component-names": "off",
"vue/no-unused-components": "warn",
"vue/no-v-html": "off",
"vue/prop-name-casing": "off",
"vue/require-default-prop": "off",
"vue/singleline-html-element-content-newline": "off",
"vue/valid-v-model": "off"
}
};