-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
39 lines (39 loc) · 1007 Bytes
/
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
{
"extends": ["tslint:recommended", "tslint-react"],
"rules": {
"quotemark": false,
"semicolon": false,
"member-access": false,
"trailing-comma": false,
"ordered-imports": false,
"no-var-requires": false,
"jsx-no-multiline-js": false,
"object-literal-sort-keys": false,
"no-console": false,
"jsx-no-lambda": false,
"arrow-parens": false,
"jsx-boolean-value": false,
"no-trailing-whitespace": false,
"no-empty": false,
"no-empty-interface": false,
"only-arrow-functions": false,
"jsx-curly-spacing": true,
"jsx-key": false,
"member-ordering": [
true,
{
"order": [
"public-static-field",
"public-instance-field",
"public-constructor",
"private-static-field",
"private-instance-field",
"private-constructor",
"protected-instance-method",
"private-instance-method",
"public-instance-method"
]
}
]
}
}