-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
97 lines (97 loc) · 2.55 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
{
"rulesDirectory": ["node_modules/codelyzer"],
"rules": {
"trailing-comma": [
false,
{
"multiline": "always",
"singleline": "never"
}
],
"arrow-return-shorthand": false,
"callable-types": false,
"class-name": false,
"comment-format": [false, "check-space"],
"eofline": false,
"forin": false,
"import-blacklist": [false],
"import-spacing": false,
"indent": [false, "spaces"],
"interface-over-type-literal": false,
"label-position": false,
"max-line-length": [false, 140],
"member-access": false,
"no-arg": false,
"no-console": [false, "debug", "log", "time", "timeEnd", "trace"],
"no-construct": false,
"no-debugger": false,
"no-duplicate-super": false,
"no-empty": false,
"no-empty-interface": false,
"no-eval": false,
"no-misused-new": false,
"no-non-null-assertion": false,
"no-shadowed-variable": false,
"no-string-literal": false,
"no-string-throw": false,
"no-switch-case-fall-through": false,
"no-trailing-whitespace": false,
"no-unnecessary-initializer": false,
"no-use-before-declare": false,
"no-var-keyword": false,
"object-literal-sort-keys": false,
"one-line": [
false,
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
"prefer-const": false,
"quotemark": [false, "single"],
"radix": false,
"semicolon": [false, "always"],
"triple-equals": [false, "allow-null-check"],
"typedef-whitespace": [
false,
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
}
],
"typeof-compare": false,
"unified-signatures": false,
"variable-name": false,
"whitespace": [
false,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type"
],
"directive-selector": [false, "attribute", "camelCase"],
"component-selector": [false, "element", "camelCase"],
"ban": [
false,
"eval",
"fit",
"fdescribe",
{
"name": "$",
"message": "please don't"
}
],
"use-input-property-decorator": false,
"use-output-property-decorator": false,
"no-output-rename": false,
"use-life-cycle-interface": false,
"use-pipe-transform-interface": false,
"component-class-suffix": false,
"directive-class-suffix": false,
"no-unused-variable": false
}
}