-
Notifications
You must be signed in to change notification settings - Fork 10
/
.eslintrc.cjs
95 lines (92 loc) · 2.35 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
// eslint-disable-next-line no-undef
module.exports = {
root: true,
env: {
browser: true,
es2021: true,
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
// "plugin:prettier/recommended",
// "prettier",
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
},
plugins: [
'@typescript-eslint',
'@stylistic',
// "prettier",
],
rules: {
'import/prefer-default-export': ['off'],
'import/no-unresolved': ['off'],
'import/extensions': ['off'],
'no-restricted-syntax': ['off'],
'no-use-before-define': ['off'],
'no-case-declarations': ['off'],
'@typescript-eslint/no-unused-vars': 'error',
'@typescript-eslint/no-explicit-any': 'error',
// '@typescript-eslint/no-floating-promises': 'error',
// '@typescript-eslint/promise-function-async': 'error',
// '@typescript-eslint/no-misused-promises': 'error',
// '@typescript-eslint/require-await': 'error',
// '@typescript-eslint/no-shadow': 'error',
// '@stylistic/object-curly-spacing': ['error', 'always'],
// '@stylistic/object-curly-newline': [
// 'error',
// {
// ObjectExpression: { multiline: true, minProperties: 4, consistent: true },
// ObjectPattern: { multiline: true, minProperties: 4, consistent: true },
// },
// ],
// '@stylistic/switch-colon-spacing': ['error', { after: false, before: false }],
'@stylistic/padding-line-between-statements': [
'error',
{
blankLine: 'always',
prev: '*',
next: [
'block',
'block-like',
'cjs-export',
'class',
'const',
'export',
'import',
'let',
'var',
],
},
{
blankLine: 'always',
prev: [
'block',
'block-like',
'cjs-export',
'class',
'const',
'export',
'import',
'let',
'var',
],
next: '*',
},
{
blankLine: 'never',
prev: ['const', 'let', 'var'],
next: ['const', 'let', 'var'],
},
{
blankLine: 'any',
prev: ['export', 'import'],
next: ['export', 'import'],
},
{ blankLine: 'always', prev: '*', next: 'return' },
],
},
};