Description
What version of Oxlint are you using?
1.1.0
What command did you run?
pnpm oxlint --max-warnings=0
What does your .oxlintrc.json
config file look like?
What happened?
We have the following pattern in our codebase:
export function example1() {
return 1;
}
export function example2() {
return 2;
}
export * as Example from './test';
import/no-cycle triggers on the last line with oxlint, but not with eslint with the eslint version of the plugin. This is not an import cycle.
Dependency cycle detected\nhelp: These paths form a cycle: \n-> ./test - packages/core/test.ts