-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy path.eslintrc.cjs
115 lines (115 loc) · 3.03 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
module.exports = {
root: true,
env: {
browser: true,
commonjs: true,
es6: true,
node: true,
jest: true
},
extends: ['airbnb', 'airbnb/hooks'],
parserOptions: {
ecmaFeatures: {
jsx: true
},
ecmaVersion: 2021,
sourceType: 'module'
},
rules: {
'linebreak-style': 'off',
'comma-dangle': [2, 'never'],
'no-await-in-loop': 1,
'arrow-parens': [2, 'as-needed'],
'no-console': 'off',
'no-plusplus': 'off',
'no-param-reassign': [2, { props: false }],
'no-restricted-syntax': 'off',
'no-nested-ternary': 'off',
'no-shadow': 'off',
'no-unused-expressions': [2, { allowShortCircuit: true, allowTernary: true, allowTaggedTemplates: true }],
'no-underscore-dangle': 'off',
'no-bitwise': 'off',
'no-continue': 'off',
'no-return-assign': 'off',
'global-require': 'off',
'consistent-return': 'off',
'one-var': 'off',
'one-var-declaration-per-line': 'off',
'max-len': [
'error',
120,
2,
{
ignoreUrls: true,
ignoreComments: false,
ignoreRegExpLiterals: true,
ignoreStrings: true,
ignoreTemplateLiterals: true
}
],
'require-await': 1,
'prefer-object-spread': 'off',
'template-curly-spacing': [2, 'never'],
'max-classes-per-file': 'off',
'import/prefer-default-export': 'off',
'import/order': [
1,
{ groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index', 'object', 'type'] }
],
'import/extensions': 'off',
'import/no-extraneous-dependencies': 'off',
'react/prop-types': 'off',
'react/destructuring-assignment': 'off',
'react/jsx-fragments': 'off',
'react/no-array-index-key': 'off',
'react/jsx-props-no-spreading': 'off',
'react/function-component-definition': 'off'
},
settings: {
react: {
version: 'detect'
}
},
overrides: [
{
files: ['*.{ts,tsx,vue}'],
extends: ['airbnb-typescript'],
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.vue.json', './tsconfig.react.json'],
extraFileExtensions: ['.vue']
},
rules: {
'import/no-extraneous-dependencies': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-shadow': 'off',
'@typescript-eslint/naming-convention': 'off',
'@typescript-eslint/no-unused-expressions': [
2,
{
allowShortCircuit: true,
allowTernary: true,
allowTaggedTemplates: true
}
],
'@typescript-eslint/comma-dangle': [2, 'never']
}
},
{
files: ['*.vue'],
extends: ['plugin:vue/vue3-essential'],
parser: 'vue-eslint-parser',
plugins: ['vue'],
parserOptions: {
parser: '@typescript-eslint/parser',
project: ['./tsconfig.vue.json'],
extraFileExtensions: ['.vue']
},
env: {
'vue/setup-compiler-macros': true
},
rules: {
'react-hooks/rules-of-hooks': 'off'
}
}
]
};