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

Commit

Permalink
v3.15.1 with updated tslint:latest config (#1508)
Browse files Browse the repository at this point in the history
  • Loading branch information
adidahiya authored Aug 22, 2016
1 parent ef908d5 commit 56756a4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Change Log
===

v3.15.1
---
* Enabled additional rules in `tslint:latest` configuration (#1506)

v3.15.0
---
* Stable release containing changes from the last dev release (v3.15.0-dev.0)
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": "3.15.0",
"version": "3.15.1",
"description": "An extensible static analysis linter for the TypeScript language",
"bin": {
"tslint": "./bin/tslint"
Expand Down
5 changes: 5 additions & 0 deletions src/configs/latest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,13 @@
*/

export const rules = {
"adjacent-overload-signatures": true,
"no-unsafe-finally": true,
"object-literal-key-quotes": [true, "as-needed"],
"object-literal-shorthand": true,
"only-arrow-functions": [true, "allow-declarations"],
"ordered-imports": [true, {
"import-sources-order": "case-insensitive",
"named-imports-order": "lowercase-last",
}],
};
Expand Down
2 changes: 1 addition & 1 deletion src/tslint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import { loadRules } from "./ruleLoader";
import { arrayify } from "./utils";

class Linter {
public static VERSION = "3.15.0";
public static VERSION = "3.15.1";

public static findConfiguration = findConfiguration;
public static findConfigurationPath = findConfigurationPath;
Expand Down

0 comments on commit 56756a4

Please sign in to comment.