-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
.eslintrc.js
140 lines (119 loc) · 3.3 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin', 'jsdoc'],
extends: [
'plugin:jsdoc/recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'prettier',
'prettier/@typescript-eslint',
],
root: true,
env: {
node: true,
jest: true,
},
rules: {
'jsdoc/require-returns': 'off',
'no-else-return': 'warn',
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-misused-promises': 'warn',
'@typescript-eslint/switch-exhaustiveness-check': 'error',
'@typescript-eslint/prefer-string-starts-ends-with': 'error',
'no-extra-parens': 'off',
'@typescript-eslint/no-extra-parens': ['off'],
camelcase: 'off',
'@typescript-eslint/member-ordering': [
'warn',
{
default: [
// Index signature
'signature',
// Fields
'private-static-field',
'protected-static-field',
'public-static-field',
'private-decorated-field',
'protected-decorated-field',
'public-decorated-field',
'private-instance-field',
'protected-instance-field',
'public-instance-field',
'private-abstract-field',
'protected-abstract-field',
'public-abstract-field',
'private-field',
'protected-field',
'public-field',
'static-field',
'abstract-field',
'instance-field',
'decorated-field',
'field',
// Constructors
'private-constructor',
'protected-constructor',
'public-constructor',
'constructor',
// Methods
'private-static-method',
'protected-static-method',
'public-static-method',
'private-decorated-method',
'protected-decorated-method',
'public-decorated-method',
'private-instance-method',
'protected-instance-method',
'public-instance-method',
'private-abstract-method',
'protected-abstract-method',
'public-abstract-method',
'private-method',
'protected-method',
'public-method',
'static-method',
'abstract-method',
'instance-method',
'decorated-method',
'method',
],
},
],
'@typescript-eslint/naming-convention': [
'error',
{
selector: 'default',
format: ['camelCase'],
},
{
selector: 'property',
format: ['camelCase', 'PascalCase'],
},
{
selector: 'variable',
format: ['camelCase', 'UPPER_CASE', 'PascalCase'],
},
{
selector: 'parameter',
format: ['camelCase', 'PascalCase'],
leadingUnderscore: 'allow',
},
{
selector: 'memberLike',
modifiers: ['private'],
format: ['camelCase'],
leadingUnderscore: 'allow',
},
{
selector: 'typeLike',
format: ['PascalCase'],
},
],
},
};