-
-
Notifications
You must be signed in to change notification settings - Fork 630
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
[Feature Request]: how to use eslint-loader in rspack #2353
Comments
It is not recommended to run eslint inside webpack / rspack anymore. Run it in another build step, and also in lint-staged. |
we will check whether we could make eslint-loader work now |
be warned that transferring this much data between rust and js will be expensive and likely have an impact on build speed. If there were a rust based linter this would not be such a bottleneck. |
Like this one ? Still in early stage development though. |
eslint is supported in #2904, you can use eslint-rspack-plugin or eslint-loader to lint your project |
What problem does this feature solve?
I want to use eslint-loader to warning in terminal, how can i use it?
What does the proposed API of configuration look like?
{
test: /.jsx/i
loader: 'eslint-loader'
}
The text was updated successfully, but these errors were encountered: