-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
50 lines (50 loc) · 1.24 KB
/
.eslintrc.js
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
module.exports = {
root: true,
env: {
browser: true,
es2020: true,
node: true,
},
extends: [
"plugin:vue/essential",
"standard",
// 'prettier'
"plugin:prettier/recommended", // 添加 prettier 插件
// "@typescript-eslint",
// 'plugin:@typescript-eslint/eslint-recommended',
// 'plugin:@typescript-eslint/recommended',
// 'prettier/@typescript-eslint'
// "@vue/typescript/recommended",
// "@vue/prettier/@typescript-eslint",
// "@vue/prettier",
],
parserOptions: {
ecmaVersion: 13,
parser: "@typescript-eslint/parser",
sourceType: "module",
},
plugins: ["vue", "@typescript-eslint"],
rules: {
camelcase: "off",
"import/no-unresolved": "off",
"import/extensions": "off",
"import/no-absolute-path": "off",
"import/no-extraneous-dependencies": "off",
"vue/no-multiple-template-root": "off",
"no-useless-call": "error",
"prefer-promise-reject-errors": ["error", { allowEmptyReject: true }],
// 'linebreak-style': 'off',
"no-param-reassign": [
"error",
{
props: true,
ignorePropertyModificationsFor: [
"state",
"config",
"options",
"piniaInstance",
],
},
],
},
};