This repository has been archived by the owner on May 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
79 lines (79 loc) · 1.71 KB
/
.eslintrc.json
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts"]
},
"import/resolver": {
"typescript": {}
}
},
"plugins": ["@typescript-eslint", "prettier"],
"env": {
"browser": true,
"es2021": true
},
"extends": [
"airbnb-base",
"plugin:prettier/recommended",
"plugin:vue/strongly-recommended",
"airbnb",
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:vue/vue3-recommended",
"plugin:vue/base",
"plugin:vue/essential",
"eslint-config-prettier",
"@vue/typescript/recommended",
"prettier"
],
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser",
"requireConfigFile": false,
"ecmaVersion": "latest",
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"rules": {
"linebreak-style": "off",
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}
],
"no-use-before-define": "off",
"no-bitwise": "off",
"no-param-reassign": "off",
"no-underscore-dangle": "off",
"no-confusing-arrow": "off",
"implicit-arrow-linebreak": "off",
"indent": "off",
"function-paren-newline": "off",
"operator-linebreak": "off",
"nonblock-statement-body-position": "off",
"padded-blocks": "off",
"quotes": "off",
"object-curly-newline": "off",
"lines-between-class-members": "off",
"import/no-extraneous-dependencies": "off",
"no-shadow": [
"error",
{ "builtinGlobals": false, "hoist": "functions", "allow": [], "ignoreOnInitialization": false }
],
"no-new": "off",
"prettier/prettier": [
"warn",
{
"singleQuote": true,
"semi": true
}
],
"vue/multi-word-component-names": "off"
}
}