-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
97 lines (97 loc) · 2.41 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"extends": [
"tslint:recommended",
"tslint-react",
"tslint-config-airbnb",
"tslint-config-prettier"
],
"linterOptions": {
"exclude": [
"node_modules/**/*.ts",
"mock/**/*.js",
".umirc.js"
]
},
"rules": {
"trailing-comma": [true, {
"multiline": {
"objects": "ignore",
"arrays": "always",
"functions": "always",
"typeLiterals": "always",
"imports": "always",
"exports": "always"
},
"singleline": "never"
}],
"semicolon": [true, "always", "strict-bound-class-methods"],
"typedef-whitespace": [
true,
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
},
{
"call-signature": "onespace",
"index-signature": "onespace",
"parameter": "onespace",
"property-declaration": "onespace",
"variable-declaration": "onespace"
}
],
"prefer-for-of": true,
"no-parameter-reassignment": true,
"curly": [true, "ignore-same-line"],
"no-duplicate-super": true,
"no-duplicate-switch-case": true,
"no-duplicate-variable": true,
"no-switch-case-fall-through": true,
"no-this-assignment": true,
"no-unsafe-finally": true,
"prefer-object-spread": true,
"switch-default": true,
"indent": [true, "spaces", 2],
"arrow-parens": [true, "ban-single-arg-parens"],
"space-before-function-paren": [true, {
"anonymous": "always",
"named": "never",
"asyncArrow": "always",
"method": "never",
"constructor": "never"
}],
"quotemark": [
true,
"single",
"jsx-double",
"avoid-escape",
"avoid-template"
],
"switch-final-break": true,
"whitespace": [
true,
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-rest-spread",
"check-type",
"check-typecast",
"check-type-operator",
"check-preblock"
],
"jsx-boolean-value": false,
"object-literal-sort-keys": false,
"no-console": false,
"ordered-imports": false,
"jsx-no-lambda": false,
"import-name": false,
"function-name": false,
"variable-name": false,
"object-shorthand-properties-first": false,
"member-ordering": false,
"array-type": false
}
}