-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy path.eslintrc
33 lines (33 loc) · 967 Bytes
/
.eslintrc
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
{
"env": {
"node": true,
"es2021": true,
"browser": true
},
"parser": "vue-eslint-parser",
"extends": [
"plugin:vue/vue3-recommended",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 12,
"parser": "@typescript-eslint/parser",
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
// "no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
// "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
"@typescript-eslint/no-explicit-any": ["off"],
"@typescript-eslint/no-this-alias": ["off"],
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"vue/multi-word-component-names": "off",
"vue/v-on-event-hyphenation": "off"
}
}