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
Since the codebase is big, the idea is to add warning rules for imports and as soon as the developer touches a file, it will --fix its content based on the following rules:
problem in both: "eslint-plugin-import": "2.27.5" & "eslint-plugin-import": "2.28.1" versions
Trying to add support for typescript's new flag
verbatimModuleSyntax
Since the codebase is big, the idea is to add warning rules for imports and as soon as the developer touches a file, it will --fix its content based on the following rules:
(The above rules are recommended in https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/docs/rules/consistent-type-imports.md)
The first 3 work as expected, but
import/no-duplicates
yields:Since
prefer-inline
is recommended as per this, what am I doing wrong?The text was updated successfully, but these errors were encountered: