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
Hello, just reporting a small issue I have.
This is a part of my TSLint config:
{ "linterOptions": { "exclude": [ "node_modules", "target", "src/ui/client/**/*" ] }, ... }
and the directory src/ui/client/**/* is getting linted when using Webpack, but not when running TSLint directly.
src/ui/client/**/*
A workaround was to add this exclude rule in my Webpack config:
{ test: /\.(tsx|ts)?$/, enforce: 'pre', loader: 'tslint-loader', exclude: [ path.resolve(__dirname, 'src/ui/client') ] },
but I would expect tslint-loader to do this automatically. Is this a bug or a feature?
The text was updated successfully, but these errors were encountered:
We still have this issue -- is there a fix in the works? ❤️
Sorry, something went wrong.
No branches or pull requests
Hello, just reporting a small issue I have.
This is a part of my TSLint config:
and the directory
src/ui/client/**/*
is getting linted when using Webpack, but not when running TSLint directly.A workaround was to add this exclude rule in my Webpack config:
but I would expect tslint-loader to do this automatically. Is this a bug or a feature?
The text was updated successfully, but these errors were encountered: