-
Notifications
You must be signed in to change notification settings - Fork 63
Open
Description
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.
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?
mi-rsc, EugenAz, monvillalon, mwld, dscherbel and 9 more
Metadata
Metadata
Assignees
Labels
No labels