You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using a // eslint-disable any-plugin/any-rule in a TypeScript project, all the config ignores them but ESLint still tried to process them outputing something like: Definition for rule '@typescript-eslint/no-unsafe-member-access' was not found @typescript-eslint/no-unsafe-member-access.
This is unintended error. ESLint should ignores the dist folder regardless if any config doesn't match them.
When using a
// eslint-disable any-plugin/any-rule
in a TypeScript project, all the config ignores them but ESLint still tried to process them outputing something like:Definition for rule '@typescript-eslint/no-unsafe-member-access' was not found @typescript-eslint/no-unsafe-member-access
.This is unintended error. ESLint should ignores the dist folder regardless if any config doesn't match them.
The reason why this happens is because the global ignores is different than the ignores from a config. See https://eslint.org/docs/latest/use/configure/configuration-files-new#globally-ignoring-files-with-ignores.
The text was updated successfully, but these errors were encountered: