-
Notifications
You must be signed in to change notification settings - Fork 346
/
tslint.json
47 lines (47 loc) · 1.07 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
{
"defaultSeverity": "warning",
"extends": ["tslint:recommended"],
"linterOptions": {
"exclude": [
"node_modules/**",
"tests/**"
]
},
"rules": {
"semicolon": [true, "never"],
"member-access": [true, "no-public"],
"arrow-parens": [true, "ban-single-arg-parens"],
"quotemark": [true, "single", "jsx-double"],
"indent": [true, "spaces", 2],
"trailing-comma": true,
"no-bitwise": false,
"no-console": false,
"interface-name": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"object-literal-key-quotes": [true, "as-needed"],
"no-consecutive-blank-lines": false,
"no-var-requires": false,
"member-ordering": [true, {
"order": [
"private-constructor",
"public-constructor"
]
}],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-type",
"check-typecast"
],
"align": [
true,
"arguments",
"elements",
"members"
],
"curly": [true, "ignore-same-line"]
}
}