Skip to content
This repository was archived by the owner on Mar 29, 2020. It is now read-only.

Commit 89da0ca

Browse files
committed
fix(typescript): remove extending prettier config
1 parent 7540be7 commit 89da0ca

File tree

1 file changed

+3
-5
lines changed
  • packages/eslint-config-typescript

1 file changed

+3
-5
lines changed

packages/eslint-config-typescript/index.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
module.exports = {
2-
extends: ['prettier/@typescript-eslint'],
32
plugins: ['@typescript-eslint'],
43
parser: '@typescript-eslint/parser',
54
settings: {
@@ -48,14 +47,13 @@ module.exports = {
4847
'@typescript-eslint/class-name-casing': 'error',
4948
'@typescript-eslint/explicit-function-return-type': 'warn',
5049
'@typescript-eslint/explicit-member-accessibility': 'error',
51-
indent: 'off',
5250
'@typescript-eslint/generic-type-naming': [
5351
'error',
5452
'^([TUKV]|T[A-Z][a-zA-Z]+)$',
5553
],
56-
'@typescript-eslint/indent': 'error',
54+
'@typescript-eslint/indent': 'off',
5755
'@typescript-eslint/interface-name-prefix': 'error',
58-
'@typescript-eslint/member-delimiter-style': 'error',
56+
'@typescript-eslint/member-delimiter-style': 'off',
5957
'@typescript-eslint/member-naming': 'off',
6058
'@typescript-eslint/member-ordering': 'error',
6159
'@typescript-eslint/no-angle-bracket-type-assertion': 'error',
@@ -92,7 +90,7 @@ module.exports = {
9290
'@typescript-eslint/prefer-interface': 'error',
9391
'@typescript-eslint/prefer-namespace-keyword': 'error',
9492
'@typescript-eslint/promise-function-async': 'off',
95-
'@typescript-eslint/type-annotation-spacing': 'error',
93+
'@typescript-eslint/type-annotation-spacing': 'off',
9694
'@typescript-eslint/restrict-plus-operands': 'error',
9795
},
9896
};

0 commit comments

Comments
 (0)