-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
Create new rule for no aliasing imports and clean out repo for use for future rules #6
Conversation
…figuration options changed package.json name to @matrixai/eslint-plugin
@CDeltakai can we get a progress update for this? |
Currently the plugin works fine as long as it's imported, and the rules can be referenced and used directly like so: |
I believe getting the recommended config to work is being a bigger hassle than expected due to the fact that the esling.config.mjs in Polykey-Enterprise is using compat.extends which translates old ESLintRC style configs to be usable in the flat config style. However, this is also seemingly blocking the ability to use configs normally using the new config style. There seems to be a way around this by ensuring backwards compatibility on the plugin and exporting a CommonJS entry point alongside a pure ESM one, but this will take extra work to ensure it works properly. If a recommended config is not absolutely necessary, the plugin will work fine as is so long as its imported like the other eslint plugins, but it will take some more research for me to figure out exactly how to get the configs to work with our current eslint.config.mjs. |
I'm not sure what you're describing here. What is the problem exactly? Are you running into errors? |
The primary error that I'm trying to fix is this:
which occurs when I try to implement the linting plugin like so:
However, if you comment out the plugin part here and just import and use the rule normally, the linting rule works fine. |
I've come up with a workaround (or a workaround of a workaround since the compat.extends thing was originally meant to be a workaround in order to make old .eslintrc specific linting rules work with the new flat config system). The compat.extends thing seems extremely stubborn and for whatever reason simply doesn't know how to read the custom plugin when read via it. Instead, I've chosen to convert the plugin entirely to a pure ESM format which means that now it will only work when imported into a flat config like eslint.config.mjs. This way, configs can be loaded directly like so:
This will then load all the rules configured in the recommended config inside the plugin, meaning you don't have to manually set up any rules if you don't want to. This is pretty much the same as with the .eslintrc style imports with the compat.extends which does the same thing for old .eslintrc lint plugins. Assuming we intend to migrate all of our codebases to use ESLint 9.0.0+ which all use the flat config style (eslint.config.mjs), this is probably the most practical solution and is the recommended approach according to docs anyway. |
Yes all repos will be esling v9. Ignore repos that aren't that yet. They are all going to use the same linting standard. |
Description
This PR implements the first custom rule which is no-alias-imports which will disallow the use of alias imports in configured files and optionally provide an auto-fix that will replace said import with a relative import instead.
This PR will also clean out the repo of unnecessary files from its original template (js-logger) and prepare it for use as a linter plugin.
Issues Fixed
Tasks
Final checklist