Replies: 4 comments 3 replies
-
I agree that this is an issue and I would like to see it addressed somehow. As you mention, the more plugins that are supported the more often this is an issue. I expect it will continue to get worse, especially when custom plugins become available. |
Beta Was this translation helpful? Give feedback.
-
It was an oversight to not allow identical names, let's treat it as a bug and fix accordingly. |
Beta Was this translation helpful? Give feedback.
-
Would love if it will be fixed, because typescript/no-namespace and import/no-namespace can be used too without changing name |
Beta Was this translation helpful? Give feedback.
-
Looks like #7082 related to that problem too. @Sysix @nrayburn-tech how we can fix it? |
Beta Was this translation helpful? Give feedback.
-
Background
In the
eslint
world there are similiar rule (names) in different plugins. As an example:no-unused-vars
and@typescript-eslint/no-unused-vars
vitest/no-identical-title
andjest/no-identical-title
Problems
Because
oxlint
support them only in one scope (vitest
injest
and@typescript-eslint
ineslint
),there are some problems.
Documentation
Implementation with config
jest
andvitest
compatible rules are reported as not supported #7240Integration with eslint-plugin-oxlint
in this project we need to keep track for the configs and the new method
buildFromOxlintConfigFile
Discussion
I want to have a simple way to parse the rules for all specific use cases.
In discord there is also a
import/no-namespace
upcoming rule wich conflicts with@typescript-eslint
,see here https://discord.com/channels/1079625926024900739/1080712072012238858/1304749400383291422
This problem crops up more often, the more plugins we are supporting.
Beta Was this translation helpful? Give feedback.
All reactions