-
Notifications
You must be signed in to change notification settings - Fork 5
/
tslint.json
58 lines (58 loc) · 1.89 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
{
"defaultSeverity": "error",
"extends": ["tslint:all"],
"rules": {
"arrow-parens": [true, "ban-single-arg-parens"],
"completed-docs": false,
"curly": [true, "ignore-same-line"],
"file-name-casing": [true, "kebab-case"],
"increment-decrement": false,
"interface-name": false,
"max-classes-per-file": [true, 3],
"max-line-length": [true, {"code": 120, "comments": 160, "ignoreUrls": true, "ignoreRegExpLiterals": true}],
"match-default-export-name": false,
"member-access": [true, "no-public"],
"member-ordering": false,
"new-cap": false,
"new-parens": false,
"newline-before-return": false,
"newline-per-chained-call": false,
"no-any": false,
"no-async-without-await": false,
"no-default-export": false,
"no-default-import": false,
"no-non-null-assertion": false,
"no-null-keyword": false,
"no-empty": [true, "allow-empty-functions"],
"no-implicit-dependencies": [true, "dev"],
"no-import-side-effect": false,
"no-magic-numbers": false,
"no-parameter-reassignment": false,
"no-shadowed-variable": false,
"no-submodule-imports": false,
"no-use-before-declare": false,
"no-unsafe-any": false,
"object-literal-key-quotes": [true, "consistent-as-needed"],
"object-literal-sort-keys": false,
"only-arrow-functions": false,
"ordered-imports": [true, "lowercase-first"],
"prefer-template": [true, "allow-single-concat"],
"semicolon": [true, "never"],
"static-this": false,
"strict-boolean-expressions": false,
"strict-comparisons": false,
"typedef": [true, "parameter", "property-declaration"],
"unified-signatures": false,
"whitespace": [true,
"check-branch",
"check-decl",
"check-operator",
"check-preblock",
"check-separator",
"check-rest-spread",
"check-type",
"check-typecast",
"check-type-operator"
]
}
}