Skip to content

Commit 8425cdc

Browse files
author
whyboris
committed
bump tslint & codelyzer versions, update tslint rules & alphabetize
1 parent bef886b commit 8425cdc

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
3939
},
4040
"devDependencies": {
41-
"@angular-devkit/build-angular": "0.12.1",
41+
"@angular-devkit/build-angular": "0.13.9",
4242
"@angular/cli": "7.3.3",
4343
"@angular/common": "7.2.7",
4444
"@angular/compiler": "7.2.7",
@@ -57,7 +57,7 @@
5757
"@types/mocha": "^5.2.6",
5858
"@types/node": "8.9.4",
5959
"chai": "^4.2.0",
60-
"codelyzer": "4.5.0",
60+
"codelyzer": "5.0.1",
6161
"conventional-changelog-cli": "2.0.11",
6262
"core-js": "2.6.1",
6363
"electron": "4.0.0",
@@ -70,12 +70,12 @@
7070
"karma-coverage-istanbul-reporter": "2.0.4",
7171
"karma-jasmine": "2.0.1",
7272
"karma-jasmine-html-reporter": "1.4.0",
73-
"mocha": "6.0.2",
73+
"mocha": "6.1.4",
7474
"npm-run-all": "4.1.5",
7575
"rxjs": "6.4.0",
7676
"spectron": "5.0.0",
7777
"ts-node": "7.0.1",
78-
"tslint": "5.11.0",
78+
"tslint": "5.16.0",
7979
"typescript": "3.2.4",
8080
"wait-on": "3.2.0",
8181
"webdriver-manager": "12.1.0",

tslint.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,18 @@
1010
true,
1111
"check-space"
1212
],
13+
"component-class-suffix": true,
14+
"component-selector": [
15+
true,
16+
"element",
17+
"app",
18+
"kebab-case"
19+
],
1320
"curly": true,
1421
"deprecation": {
1522
"severity": "warn"
1623
},
24+
"directive-class-suffix": true,
1725
"eofline": true,
1826
"forin": true,
1927
"import-blacklist": [
@@ -59,12 +67,18 @@
5967
"no-empty": false,
6068
"no-empty-interface": true,
6169
"no-eval": true,
70+
"no-host-metadata-property": true,
6271
"no-inferrable-types": [
6372
true,
6473
"ignore-params"
6574
],
75+
"no-input-rename": true,
76+
"no-inputs-metadata-property": true,
6677
"no-misused-new": true,
6778
"no-non-null-assertion": true,
79+
"no-output-on-prefix": true,
80+
"no-output-rename": true,
81+
"no-outputs-metadata-property": true,
6882
"no-shadowed-variable": true,
6983
"no-string-literal": false,
7084
"no-string-throw": true,
@@ -107,6 +121,8 @@
107121
}
108122
],
109123
"unified-signatures": true,
124+
"use-life-cycle-interface": true,
125+
"use-pipe-transform-interface": true,
110126
"variable-name": false,
111127
"whitespace": [
112128
true,
@@ -115,22 +131,6 @@
115131
"check-operator",
116132
"check-separator",
117133
"check-type"
118-
],
119-
"component-selector": [
120-
true,
121-
"element",
122-
"app",
123-
"kebab-case"
124-
],
125-
"no-output-on-prefix": true,
126-
"use-input-property-decorator": true,
127-
"use-output-property-decorator": true,
128-
"use-host-property-decorator": true,
129-
"no-input-rename": true,
130-
"no-output-rename": true,
131-
"use-life-cycle-interface": true,
132-
"use-pipe-transform-interface": true,
133-
"component-class-suffix": true,
134-
"directive-class-suffix": true
134+
]
135135
}
136136
}

0 commit comments

Comments
 (0)