Skip to content

Commit

Permalink
chore: Disables a tslint rule for interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Bjeaurn committed Sep 29, 2019
1 parent 18faab2 commit b6e6e7b
Showing 1 changed file with 23 additions and 7 deletions.
30 changes: 23 additions & 7 deletions tslint.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,33 @@
{
"extends": ["tslint:recommended"],
"extends": [
"tslint:recommended"
],
"rules": {
"semicolon": [true, "never"],
"quotemark": [true, "single"],
"arrow-parens": [true, "ban-single-arg-parens"],
"object-literal-sort-keys": [false],
"trailing-comma": [false],
"semicolon": [
true,
"never"
],
"quotemark": [
true,
"single"
],
"arrow-parens": [
true,
"ban-single-arg-parens"
],
"object-literal-sort-keys": [
false
],
"trailing-comma": [
false
],
"max-classes-per-file": false,
"no-empty": false,
"no-console": false,
"interface-name": false,
"member-access": false,
"only-arrow-functions": false,
"no-empty-interface": false,
"ordered-imports": false
}
}
}

0 comments on commit b6e6e7b

Please sign in to comment.