-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.js
71 lines (70 loc) · 2.71 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
const config = {
extends: ['react-app', 'react-app/jest'],
rules: {
curly: ['error'],
},
overrides: [
{
files: ['*.ts', '*.tsx'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:@typescript-eslint/strict',
],
parserOptions: {
project: ['./tsconfig.json'],
},
rules: {
'@typescript-eslint/array-type': ['error', { default: 'array-simple' }],
'@typescript-eslint/unbound-method': 'off',
'@typescript-eslint/require-await': 'off',
'@typescript-eslint/explicit-function-return-type': 'error',
'@typescript-eslint/member-ordering': [
'error',
{
default: [
'static-field',
'public-static-method',
'public-instance-field',
'protected-instance-field',
'private-instance-field',
'public-constructor',
'public-instance-method',
'protected-instance-method',
'private-instance-method',
],
},
],
'@typescript-eslint/naming-convention': [
'error',
{
selector: ['class', 'interface', 'typeAlias', 'enum', 'typeParameter'],
format: ['PascalCase'],
leadingUnderscore: 'forbid',
trailingUnderscore: 'forbid',
},
{ selector: 'enumMember', format: ['PascalCase', 'UPPER_CASE'] },
{
selector: 'classProperty',
format: ['camelCase'],
leadingUnderscore: 'forbid',
trailingUnderscore: 'forbid',
},
{
selector: 'classProperty',
modifiers: ['private'],
format: ['camelCase'],
leadingUnderscore: 'allow',
},
{
selector: 'classProperty',
modifiers: ['protected'],
format: ['camelCase'],
leadingUnderscore: 'allow',
},
],
},
},
],
};
module.exports = config;