-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.json
37 lines (37 loc) · 957 Bytes
/
.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
{
"rules": {
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "typeLike",
"format": ["UPPER_CASE", "camelCase", "PascalCase"],
"leadingUnderscore": "allow"
}
],
"@typescript-eslint/ban-types": [
"error",
{
"types": {
"{}": false,
"Function": false,
"Object": false
},
"extendDefaults": true
}
]
},
"overrides": [
{
"files": ["**/*.ts"],
"excludedFiles": ["**/*.stories.ts"],
"rules": {
"no-restricted-imports": [
"error",
{
"patterns": ["**/stories/**", "**/*.pw.spec.ts"]
}
]
}
}
]
}