Skip to content

Commit

Permalink
Remove all tslint rules which conflict with prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
k15a committed Oct 23, 2017
1 parent b75f654 commit 0db6177
Showing 1 changed file with 2 additions and 58 deletions.
60 changes: 2 additions & 58 deletions tslint.json
Original file line number Diff line number Diff line change
@@ -1,70 +1,14 @@
{
"rules": {
"curly": true,
"eofline": false,
"align": [
true,
"parameters"
],
"class-name": true,
"indent": [
true,
"spaces"
],
"jsdoc-format": true,
"max-line-length": [
true,
150
],
"no-consecutive-blank-lines": [
true
],
"no-trailing-whitespace": true,
"no-duplicate-variable": true,
"no-var-keyword": true,
"no-empty": true,
"no-unused-expression": true,
"no-var-requires": true,
"no-require-imports": true,
"one-line": [
true,
"check-else",
"check-whitespace",
"check-open-brace"
],
"quotemark": [
true,
"double",
"avoid-escape"
],
"semicolon": [
true,
"never"
],
"typedef-whitespace": [
true,
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
}
],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type"
]
"no-require-imports": true
},
"array-type": [
true,
"array-simple"
],
"extends": [
"tslint-config-prettier"
]
"array-type": [true, "array-simple"]
}

0 comments on commit 0db6177

Please sign in to comment.