-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
47 lines (47 loc) · 1.48 KB
/
tslint.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
{
"extends": ["tslint:latest", "tslint-react"],
"rules": {
"quotemark": [true, "single", "avoid-escape"],
"ordered-imports": [true, {
"import-sources-order": "lowercase-last",
"named-imports-order": "lowercase-first"
}],
"max-line-length": false,
"object-literal-sort-keys": true,
"member-access": false,
"jsx-no-lambda": false,
"no-console": false,
"no-empty-interface": false,
"max-classes-per-file": false,
"align": false,
"variable-name": false,
"prefer-for-of": true,
"prefer-promise-reject-errors": false,
"jsdoc-format": false,
"jsx-boolean-value": false,
"jsx-no-multiline-js": false,
"no-reference": false,
"jsx-no-string-ref": false,
"no-var-requires": true,
"callable-types": false,
"jsx-alignment": false,
"jsx-curly-spacing": false,
"no-submodule-imports": false,
"no-implicit-dependencies": false,
"no-object-literal-type-assertion": false,
"no-shadowed-variable": false,
"no-namespace": false,
"trailing-comma": [
true,
{
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "always",
"typeLiterals": "ignore"
},
"esSpecCompliant": true
}
]
}
}