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

Commit

Permalink
Changes to prepare for v2.x release.
Browse files Browse the repository at this point in the history
  • Loading branch information
nwronski committed Apr 19, 2017
1 parent 1bdb9f5 commit 0d5f4c3
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
22 changes: 20 additions & 2 deletions tslint-base.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"Bluebird"
],
"no-for-in-array": true,
"no-inferrable-types": false,
"no-inferrable-types": [true, "ignore-params"],
"no-magic-numbers": false,
"no-mergeable-namespace": true,
"no-misused-new": true,
Expand All @@ -59,6 +59,14 @@
"no-unnecessary-initializer": true,
"no-void-expression": true,
"object-literal-sort-keys": false,
"one-line": [
true,
"check-catch",
"check-finally",
"check-else",
"check-open-brace",
"check-whitespace"
],
"ordered-imports": [
true,
{
Expand All @@ -83,7 +91,7 @@
"trailing-comma": [
true,
{
"multiline": "never",
"multiline": "always",
"singleline": "never"
}
],
Expand All @@ -92,6 +100,16 @@
"ban-keywords",
"check-format",
"allow-leading-underscore"
],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-type",
"check-preblock"
]
}
}
1 change: 0 additions & 1 deletion tslint-ng2.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"no-attribute-parameter-decorator": true,
"no-input-rename": true,
"no-output-rename": true,
"no-forward-ref": true,
"use-life-cycle-interface": true,
"use-pipe-transform-interface": true,
"pipe-naming": [true, "camelCase", null],
Expand Down

0 comments on commit 0d5f4c3

Please sign in to comment.