We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Initializing the plugin twice with js and ts extensions should result in both file types to be linted.
With the following plugins only js files are linted and ts files are ignored.
plugins: [ new ESLintPlugin({ context: servicePath, baseConfig: jsEslintConfig, extensions: "js" }), new ESLintPlugin({ context: servicePath, baseConfig: tsEslintConfig, extensions: "ts" }) ]
The text was updated successfully, but these errors were encountered:
/cc @ricardogobbosouza I think make sense, why we do not support it?
Sorry, something went wrong.
It should work, I will analyze
Hi @thomaschaaf It doesn't really work ... I'm fixing now Thanks for reporting
ricardogobbosouza
Successfully merging a pull request may close this issue.
Expected Behavior / Situation
Initializing the plugin twice with js and ts extensions should result in both file types to be linted.
Actual Behavior / Situation
With the following plugins only js files are linted and ts files are ignored.
Modification Proposal
The text was updated successfully, but these errors were encountered: