-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtslint.json
More file actions
40 lines (40 loc) · 1.09 KB
/
tslint.json
File metadata and controls
40 lines (40 loc) · 1.09 KB
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
{
"extends": [
"tslint-config-airbnb",
"tslint-react",
"tslint-config-prettier"
],
"rules": {
"no-constant-condition": true,
"quotemark": [true, "single", "avoid-escape", "jsx-double"],
"no-console": false,
"ordered-imports": false,
"no-namespace": false,
"object-literal-sort-keys": false,
"arrow-parens": false,
"no-empty": false,
"no-var-requires": false,
"array-type": false,
"member-ordering": [false, {
"order": [
"private-static-field",
"protected-static-field",
"public-static-field",
"private-instance-field",
"protected-instance-field",
"public-instance-field",
"private-constructor",
"protected-constructor",
"public-constructor",
"private-static-method",
"protected-static-method",
"public-static-method",
"private-instance-method",
"protected-instance-method",
"public-instance-method"
]
}],
"object-literal-key-quotes": [true, "as-needed"],
"no-trailing-whitespace": [false, "ignore-comments"]
}
}