Skip to content
This repository was archived by the owner on Mar 25, 2021. It is now read-only.

Commit 4b3aa6a

Browse files
authored
Prepare release v5.18.0 (#4771)
1 parent 1e356cb commit 4b3aa6a

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Change Log
22

3+
## v5.18.0
4+
5+
- [feature] New `--print-config` CLI flag (#4744)
6+
- [bugfix] [`no-unnecessary-type-assertion`](https://palantir.github.io/tslint/rules/no-unnecessary-type-assertion/) no longer flags `x!` non-null assertions if `--strictNullChecks` is not enabled (#3724)
7+
- [bugfix] [`quotemark`](https://palantir.github.io/tslint/rules/quotemark/) handles unbalanced quotes more gracefully without crashing (#4344)
8+
- [docs] Add tslint-playground link to README and bug report template (#4150)
9+
- [enhancement] [`no-magic-numbers`](https://palantir.github.io/tslint/rules/no-magic-numbers/) rule ignores arguments passed into default Number methods (#3668)
10+
- [new-fixer] [`comment-format`](https://palantir.github.io/tslint/rules/comment-format/) (#3583)
11+
- [new-rule-option] `"allow-trailing-lowercase"` option for [`comment-format`](https://palantir.github.io/tslint/rules/comment-format/) rule (#3583)
12+
- [new-rule-option] `"ignore-accessors"` for [`adjacent-overload-signatures`](https://palantir.github.io/tslint/rules/adjacent-overload-signatures/) to ignore getters / setters overloads (#3718)
13+
- [new-rule] [`no-async-without-await`](https://palantir.github.io/tslint/rules/no-async-without-await/) (#3945)
14+
- [new-rule] [`strict-comparisons`](https://palantir.github.io/tslint/rules/strict-comparisons/) (#4519)
15+
16+
Thanks to our contributors!
17+
18+
- Josh Goldberg
19+
- smoehrle
20+
- Mateusz Witkowski
21+
- Andy Hanson
22+
- John Wiseheart
23+
- Eran Shabi
24+
- Tibor Blenessy
25+
- AndreasGassmann
26+
- Ryan Waskiewicz
27+
- Isabelle
28+
29+
330
## v5.17.0
431

532
- [bugfix] [`quotemark`](https://palantir.github.io/tslint/rules/quotemark/) backtic option now ignores enum members, use strict declarations, lookup types, and strings containing octal escape sequences. (#4693)

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tslint",
3-
"version": "5.17.0",
3+
"version": "5.18.0",
44
"description": "An extensible static analysis linter for the TypeScript language",
55
"bin": {
66
"tslint": "./bin/tslint"
@@ -44,7 +44,7 @@
4444
"tsutils": "^2.29.0"
4545
},
4646
"peerDependencies": {
47-
"typescript": ">=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev"
47+
"typescript": ">=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev"
4848
},
4949
"devDependencies": {
5050
"@octokit/rest": "^16.24.3",

src/linter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import { arrayify, dedent, flatMap, mapDefined } from "./utils";
4242
* Linter that can lint multiple files in consecutive runs.
4343
*/
4444
export class Linter {
45-
public static VERSION = "5.17.0";
45+
public static VERSION = "5.18.0";
4646

4747
public static findConfiguration = findConfiguration;
4848
public static findConfigurationPath = findConfigurationPath;

0 commit comments

Comments
 (0)