Skip to content

Commit 1319ba8

Browse files
Disable TSLint formatting rules
Since Prettier controls the code formatting, TSLint does not need to check any formatting.
1 parent 34ece8a commit 1319ba8

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

tslint.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
{
22
"extends": [
33
"tslint:recommended"
4-
]
4+
],
5+
"rules": {
6+
"arrow-parens": false,
7+
"indent": false,
8+
"object-literal-key-quotes": false,
9+
"one-line": false,
10+
"quotemark": false,
11+
"trailing-comma": false,
12+
"whitespace": false
13+
}
514
}

0 commit comments

Comments
 (0)