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

Commit

Permalink
Merge branch 'next' of github.com:palantir/tslint into next
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Killian committed Dec 10, 2015
2 parents f255133 + 0730f45 commit a55bbe5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Change Log
===

v3.2.0-dev.1
---
* [bugfix] fixed bug in how custom rules directories are registered (#844)
* [enhancement] better support for globs in CLI (#827)
* [new-rule] `no-null-keyword` rule (#722)

v3.1.1
---
* Bump TypeScript peer dependency to `>= 1.7.3` due to `const enum` incompatibility (#832)
Expand All @@ -9,6 +15,9 @@ v3.1.0
---
* [bugfix] build with TS v1.7.3 to fix null pointer exception (#832)
* [bugfix] fixed false positive in `no-require-imports` rule (#816)

v3.1.0-dev.1
---
* [bugfix] fixed `no-shadowed-variable` false positives when handling destructuring in function params (#727)
* [enhancement] `rulesDirectory` in `tslint.json` now supports multiple file paths (#795)

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tslint",
"version": "3.1.1",
"version": "3.2.0-dev.1",
"description": "a static analysis linter for TypeScript",
"bin": {
"tslint": "./bin/tslint"
Expand Down Expand Up @@ -36,11 +36,11 @@
"grunt-ts": "^5.1.0",
"grunt-tslint": "latest",
"mocha": "^2.2.5",
"tslint": "latest",
"typescript": "latest"
"tslint": "next",
"typescript": "next"
},
"peerDependencies": {
"typescript": ">=1.7.3"
"typescript": ">=1.7.3 || >=1.7.0-dev.20151003 || >=1.8.0-dev"
},
"license": "Apache-2.0"
}
2 changes: 1 addition & 1 deletion src/tslint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import {ILinterOptions, LintResult} from "./lint";
import {loadRules} from "./ruleLoader";

class Linter {
public static VERSION = "3.1.1";
public static VERSION = "3.2.0-dev.1";
public static findConfiguration = config;

private fileName: string;
Expand Down

0 comments on commit a55bbe5

Please sign in to comment.