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

Commit

Permalink
Merge pull request #621 from palantir/prepare-2.4.5
Browse files Browse the repository at this point in the history
Prepare release v2.4.5
  • Loading branch information
adidahiya committed Aug 28, 2015
2 parents ce89333 + 56efbdd commit fca2a66
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Log
===

v2.4.5
---
* [bugfix] fix false positives on `no-shadowed-variable` rule (#500)
* [enhancement] add `allow-trailing-underscore` option to `variable-name` rule

v2.4.4
---
* [bugfix] remove "typescript" block from package.json (#606)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ A sample configuration file with all options is available [here](https://github.
* `check-function` checks that all top-level functions are using strict mode
* `variable-name` allows only camelCased or UPPER_CASED variable names. Rule options:
* `"allow-leading-underscore"` allows underscores at the beginnning.
* `"allow-trailing-underscore"` allows underscores at the end.
* `whitespace` enforces spacing whitespace. Rule options:
* `"check-branch"` checks branching statements (`if`/`else`/`for`/`while`) are followed by whitespace
* `"check-decl"`checks that variable declarations have whitespace around the equals token
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tslint",
"version": "2.4.4",
"version": "2.4.5",
"description": "a static analysis linter for TypeScript",
"bin": {
"tslint": "./bin/tslint"
Expand Down
2 changes: 1 addition & 1 deletion src/tslint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module Lint {
}

export class Linter {
public static VERSION = "2.4.4";
public static VERSION = "2.4.5";

private fileName: string;
private source: string;
Expand Down

0 comments on commit fca2a66

Please sign in to comment.