-
Notifications
You must be signed in to change notification settings - Fork 7
/
tslint.json
48 lines (48 loc) · 1.17 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
48
{
"extends": [
"tslint:recommended",
"tslint-eslint-rules",
"tslint-react",
"tslint-config-prettier"
],
"jsRules": {},
"rules": {
"one-variable-per-declaration": false,
"only-arrow-functions": false,
"interface-name": false,
"jsx-no-lambda": false,
"ordered-imports": [false],
"object-literal-sort-keys": false,
"curly": [true, "ignore-same-line"],
"quotemark": [
true,
"single",
"jsx-double",
"avoid-escape"
],
"member-access": [
false
],
"member-ordering": [
false
],
"trailing-comma": [
true,
{
"singleline": "never",
"multiline": "always"
}
],
"no-empty": false,
"no-submodule-imports": false,
"no-implicit-dependencies": false,
"no-constant-condition": false,
"triple-equals": [
true,
"allow-undefined-check"
],
"no-duplicate-imports": false,
"jsx-alignment": false,
"jsx-no-bind": true
}
}