-
Notifications
You must be signed in to change notification settings - Fork 65
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
Ignore tslint #83
Comments
Just be explicit and write: /* tslint:disable */ at the start of the files you don't want to lint. |
I faced issue using tslint-loader along with Angular's AOT compilation. TSLint fails to load ngfactory for app, which exist in virtual filesystem of webpack. At the entry point of AOT I need to do smth like this:
The issue is that I can't prevent loading that in-memory file, neither by using tslint directives nor using
Also, it's worth to mention that boot.aot.ts, which contains that import, excluded from ts build process, so if I disable tslint-loader, all working fine. Can I workaround this issue somehow? Any help is appreciated. |
I was experiencing the same issue but was able to get around it by excluding
|
i would really appreciate if there is a way to ignore a paticular file or directory from tsLint
The text was updated successfully, but these errors were encountered: