-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
46 lines (46 loc) · 1.29 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
{
"root": true,
"extends": ["react-app", "react-app/jest"],
"ignorePatterns": ["build/*", "data/*"],
"overrides": [
{
"files": ["**/*.ts?(x)"],
"rules": {
"@typescript-eslint/naming-convention": [
"error",
{
// variables, functions and properties must be camelCase
"selector": "variableLike",
"format": ["camelCase"],
"leadingUnderscore": "allow"
},
{
// properties, methods, accessors and enum members must be camelCase
"selector": "memberLike",
"format": ["camelCase"]
},
{
// functions must be camelCase or PascalCase
"selector": "function",
"format": ["camelCase", "PascalCase"]
},
{
// global constants must be UPPER_CASE or PascalCase
"selector": "variable",
"modifiers": ["global", "const"],
"format": ["UPPER_CASE", "PascalCase"]
},
{
// interfaces must be PascalCase and start with I
"selector": "interface",
"format": ["PascalCase"],
"custom": {
"regex": "^I[A-Z]",
"match": true
}
}
]
}
}
]
}