-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
50 lines (50 loc) · 945 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"root": true,
"parserOptions": {
"ecmaVersion": "latest"
},
"env": {
"es6": true
},
"plugins": ["simple-import-sort"],
"overrides": [
{
"parserOptions": {
"project": "./tsconfig.json"
},
"files": [
"lib/src/**/*.ts"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"rules": {
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
"@typescript-eslint/ban-ts-comment": 0,
"max-lines-per-function": [
1,
{
"max": 40
}
],
"max-lines": [
1,
{
"max": 150
}
]
}
},
{
"parserOptions": {
"project": "./tsconfig.json"
},
"files": [
"lib/src/**/*.ts"
]
}
]
}