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
fix(linter): Fix inconsistent behavior in no-duplicate-imports rule (#12192)
Currently, the `no-duplicate-imports` rule in Oxlint does not report an
error for the following code:
```js
/*eslint no-duplicate-imports: ["error", { "includeExports": true }]*/
export { a } from 'foo';
import { f } from 'foo';
```
0 commit comments