Skip to content

Commit 3409b37

Browse files
committed
chore: Format file and remove deprecated rules
1 parent f0395b4 commit 3409b37

File tree

1 file changed

+20
-11
lines changed

1 file changed

+20
-11
lines changed

angular/tslint.json

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
"curly": true,
1313
"eofline": true,
1414
"forin": true,
15-
"import-blacklist": [true],
15+
"import-blacklist": [
16+
true
17+
],
1618
"import-spacing": true,
1719
"indent": [
1820
true,
@@ -27,8 +29,9 @@
2729
"member-access": false,
2830
"member-ordering": [
2931
true,
30-
"static-before-instance",
31-
"variables-before-functions"
32+
{
33+
"order": "statics-first"
34+
}
3235
],
3336
"no-arg": true,
3437
"no-bitwise": true,
@@ -70,6 +73,7 @@
7073
],
7174
"radix": true,
7275
"semicolon": [
76+
true,
7377
"always"
7478
],
7579
"triple-equals": [
@@ -86,7 +90,6 @@
8690
"variable-declaration": "nospace"
8791
}
8892
],
89-
"typeof-compare": true,
9093
"unified-signatures": true,
9194
"variable-name": false,
9295
"whitespace": [
@@ -97,9 +100,18 @@
97100
"check-separator",
98101
"check-type"
99102
],
100-
101-
"directive-selector": [true, "attribute", "app", "camelCase"],
102-
"component-selector": [true, "element", "app", "kebab-case"],
103+
"directive-selector": [
104+
true,
105+
"attribute",
106+
"app",
107+
"camelCase"
108+
],
109+
"component-selector": [
110+
true,
111+
"element",
112+
"app",
113+
"kebab-case"
114+
],
103115
"use-input-property-decorator": true,
104116
"use-output-property-decorator": true,
105117
"use-host-property-decorator": true,
@@ -108,9 +120,6 @@
108120
"use-life-cycle-interface": true,
109121
"use-pipe-transform-interface": true,
110122
"component-class-suffix": true,
111-
"directive-class-suffix": true,
112-
"no-access-missing-member": true,
113-
"templates-use-public": true,
114-
"invoke-injectable": true
123+
"directive-class-suffix": true
115124
}
116125
}

0 commit comments

Comments
 (0)