We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Node version: v16.13.2 npm version: 8.1.2 Local ESLint version: 8.15.0 Global ESLint version: 8.15.0 Operating System: macOS
@typescript-eslint/parser
import {a} from "./foo"; import {a} from "./foo";
if do eslint --fix
import { a,a } from "./foo"; # this create new issue duplicate identifier.
import {a} from "./foo";
import {a,a} from "./foo";
The text was updated successfully, but these errors were encountered:
What version of this plugin are you using?
Sorry, something went wrong.
using "eslint-plugin-import": "^2.26.0".
Looks like this is a duplicate of #2437.
No branches or pull requests
Environment
Node version: v16.13.2
npm version: 8.1.2
Local ESLint version: 8.15.0
Global ESLint version: 8.15.0
Operating System: macOS
What parser are you using?
@typescript-eslint/parser
What did you do?
if two import is similar then, its merge them both which create a new issue which not identified by eslint.
import {a} from "./foo"; import {a} from "./foo";
if do eslint --fix
import { a,a } from "./foo"; # this create new issue duplicate identifier.
What did you expect to happen?
import {a} from "./foo";
What actually happened?
import {a,a} from "./foo";
The text was updated successfully, but these errors were encountered: