Replies: 7 comments 10 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.
-
@camc314 & @Boshen what are the next plans to support rules, which extends some other rules? See linked issues + a new found: oxc-project/eslint-plugin-oxlint#263 I tried to collect all known rules for oxc project:Rules which are implemented in
|
Beta Was this translation helpful? Give feedback.
-
Closing in favour of #7622, #7574 and #7567 the rest should be |
Beta Was this translation helpful? Give feedback.
-
@camc314 Sorry to bother you, I did not want to spam in this PR #8149 (comment) The starting discoussion will apply to the PR too. We need to sync the docs and the matching inside |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
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