Skip to content

Commit 9f28276

Browse files
authoredJul 3, 2024··
chore: update ts config structure (#6008)
1 parent 068e441 commit 9f28276

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+181
-167
lines changed
 

‎.eslintrc.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,16 @@ rules:
4141
order: asc
4242
caseInsensitive: true
4343
import/no-duplicates: 'error'
44-
import/no-unresolved: 'error'
44+
import/no-unresolved: 'off'
4545
overrides:
4646
# add config for all TypeScript files
4747
- files:
4848
- '*.ts'
4949
- '*.tsx'
5050
parserOptions:
51-
project:
52-
- './tsconfig.spec.json'
53-
- './tsconfig.node.json'
54-
- './packages/*/tsconfig.json'
51+
EXPERIMENTAL_useProjectService:
52+
# TODO https://github.com/typescript-eslint/typescript-eslint/issues/9450
53+
maximumDefaultProjectFileMatchCount_THIS_WILL_SLOW_DOWN_LINTING: 1000
5554
plugins:
5655
- '@typescript-eslint'
5756
extends:
@@ -124,7 +123,6 @@ overrides:
124123
rules:
125124
'@typescript-eslint/no-empty-function': 'off'
126125
'import/order': 'warn'
127-
'import/no-unresolved': 'off'
128126
'react/no-unescaped-entities': 'off'
129127
'@typescript-eslint/unbound-method': 'warn'
130128
'react/display-name': 'off'

0 commit comments

Comments
 (0)
Please sign in to comment.