-
Notifications
You must be signed in to change notification settings - Fork 21
/
tslint.prod.json
35 lines (35 loc) · 972 Bytes
/
tslint.prod.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
{
"extends": ["tslint:latest", "tslint-react", "tslint-config-prettier", "tslint-plugin-prettier"],
"defaultSeverity": "error",
"rules": {
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"jsx-alignment": false,
"quotemark": [true, "single", "avoid-escape", "jsx-double"],
"no-empty-interface": true,
"trailing-comma": false,
"no-empty": false,
"no-console": true,
"no-var-requires": false,
"no-submodule-imports": false,
"no-require-imports": false,
"no-implicit-dependencies": false,
"object-literal-sort-keys": false,
"max-classes-per-file": true,
"space-within-parens": [false, 1],
"whitespace": {
"options": [
"check-branch",
"check-decl",
"check-module",
"check-operator",
"check-separator",
"check-type",
"check-typecast",
"check-type-operator",
"check-rest-spread",
"check-preblock"
]
}
}
}