Skip to content

Commit de8b7d4

Browse files
committed
Avoid linting indentation rules
This is already handled by tsfmt and eslint has some slight differences.
1 parent 432c5c9 commit de8b7d4

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

extensions/ql-vscode/.eslintrc.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,7 @@ module.exports = {
2626
"@typescript-eslint/no-explicit-any": "off",
2727
"prefer-const": ["warn", {"destructuring": "all"}],
2828
"indent": "off",
29-
"@typescript-eslint/indent": ["error", 2, {
30-
"SwitchCase": 1,
31-
"FunctionDeclaration": { "body": 1, "parameters": 1 }
32-
}],
29+
"@typescript-eslint/indent": "off",
3330
"@typescript-eslint/no-throw-literal": "error",
3431
"no-useless-escape": 0
3532
},

0 commit comments

Comments
 (0)