Skip to content

Commit

Permalink
Fix: Relaxing some linting rules
Browse files Browse the repository at this point in the history
  • Loading branch information
miklosaubert committed Jan 21, 2019
1 parent 633654d commit ddd716b
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions tslint.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"extends": ["tslint:recommended"],
"rules": {
"quotemark": [true, "single"],
"radix": false,
Expand All @@ -14,9 +12,8 @@
}
],
"no-shadowed-variable": false,
"no-empty": [
true,
"allow-empty-catch"
]
"no-empty": [true, "allow-empty-catch"],
"member-ordering": false,
"max-line-length": [true, 140]
}
}

0 comments on commit ddd716b

Please sign in to comment.