-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
47 lines (45 loc) · 1.12 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", "tslint-config-prettier"],
"rules": {
"jsx-no-multiline-js": false,
"indent": [true, "tabs", 4],
"semicolon": [true, "never"],
"quotemark": [true, "single", "jsx-double"],
"ordered-imports": false,
"no-submodule-imports": false,
"align": false,
"no-namespace": true,
"only-arrow-functions": false,
"object-literal-sort-keys": false,
"no-shadowed-variable": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"member-ordering": [
true,
{
"order": [
"static-field",
"instance-field",
"constructor",
"private-instance-method",
"protected-instance-method"
]
}
],
"no-implicit-dependencies": false,
"prefer-conditional-expression": false,
"no-object-literal-type-assertion": false,
"max-line-length": false,
"no-var-requires": false,
"no-empty-interface": false,
"interface-name": false,
"no-duplicate-imports": true,
"jsdoc-format": false,
"no-redundant-jsdoc": true,
"jsx-no-string-ref": true,
"jsx-no-lambda": true,
"jsx-wrap-multiline": false
},
"linterOptions": {
"exclude": ["**/*.json"]
}
}