Skip to content

Commit

Permalink
feat: turn @typescript-eslint/indent off
Browse files Browse the repository at this point in the history
This too often produces errors because it does not
match the formatting style from prettier.

It is assumed that prettier is used in projects, so this is not
neccessary.
  • Loading branch information
coderbyheart committed May 7, 2020
1 parent 4524580 commit 18a9cb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = {
'prettier',
],
rules: {
'@typescript-eslint/indent': ['error', 'tab'],
'@typescript-eslint/indent': ['off'],
'@typescript-eslint/no-object-literal-type-assertion': ['off'],
'@typescript-eslint/explicit-function-return-type': ['off'],
'@typescript-eslint/await-thenable': ['error'],
Expand Down

0 comments on commit 18a9cb1

Please sign in to comment.