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

Commit

Permalink
Remove rules that generate bad fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
nwronski committed Apr 26, 2017
1 parent d6c8632 commit fce90dd
Showing 1 changed file with 3 additions and 15 deletions.
18 changes: 3 additions & 15 deletions tslint-base.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
{
"extends": "tslint:latest",
"rules": {
"array-bracket-spacing": [
true,
"always"
],
"array-bracket-spacing": false,
"arrow-return-shorthand": true,
"await-promise": true,
"ban": [
Expand Down Expand Up @@ -100,10 +97,7 @@
true,
"ignore-arrow-function-shorthand"
],
"object-curly-spacing": [
true,
"always"
],
"object-curly-spacing": false,
"object-literal-sort-keys": false,
"one-line": [
true,
Expand Down Expand Up @@ -140,13 +134,7 @@
"restrict-plus-operands": true,
"strict-boolean-expressions": true,
"strict-type-predicates": true,
"trailing-comma": [
true,
{
"multiline": "always",
"singleline": "never"
}
],
"trailing-comma": false,
"variable-name": [
true,
"ban-keywords",
Expand Down

0 comments on commit fce90dd

Please sign in to comment.