-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtslint.json
More file actions
33 lines (32 loc) · 759 Bytes
/
tslint.json
File metadata and controls
33 lines (32 loc) · 759 Bytes
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
{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"linterOptions": {
"exclude": [
"config/**/*.js",
"node_modules/**/*.ts",
"coverage/lcov-report/*.js"
]
},
"rules": {
"interface-name": [false, "never-prefix"],
"member-access": [true, "no-public"],
"ordered-imports": false,
"no-console": false,
"no-namespace": false,
"no-empty-interface": false,
"jsx-no-lambda": false,
"object-literal-sort-keys": false,
"no-shadowed-variable": [
false,
{
"class": true,
"enum": true,
"function": true,
"interface": false,
"namespace": true,
"typeAlias": false,
"typeParameter": false
}
]
}
}