Linting a single file is super slow #3944
Closed
kevinbarabash
started this conversation in
General
Replies: 2 comments
-
I'm in the wrong repo. Sorry about that. |
Beta Was this translation helpful? Give feedback.
0 replies
-
By removing the operations property, you ensure that the GraphQL ESLint parser only targets .graphql files. The .ts and .tsx files will be handled by the processor defined for those file types. However, if you still encounter the issue of parsing all .ts and .tsx files, you might need to check other parts of your ESLint or project configuration that could be inadvertently triggering this behavior. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Here's a paired down config:
I'm running eslint using the following command:
I'm seeing the following output:
followed by thousands of lines of similar output. It looks like it's parsing every single .ts(x) file in my project. Is there a way to keep it from doing this?
Beta Was this translation helpful? Give feedback.
All reactions