Closed Turbo87 closed 7 years ago
Hmm nothing drops in from the top of my head. Will need dig deeper. Will look at it and let you know by EOD . Thanks for reporting @turbo87
@Turbo87 : Found the issue. The core issue is that TSLint library lint
API does not take into consideration extends
yet. The extends
API seems to be only implemented in tslint-cli per this PR. I will open an issue in the TSLint repo.
In the meanwhile I will also remove the extra checks for rules
in this plugin since tslint checks for it now. However, until the issue in tslint is not fixed, you will not be able to use it via the broccoli plugin 😞 .
I will try to fix the issue in tslint repo but I won't be able to start looking at it until next weekend.
Opened issue in tslint: https://github.com/palantir/tslint/issues/2011
@kratiahuja awesome, thanks for taking care of this so quickly!
fixed by https://github.com/kratiahuja/broccoli-tslinter/pull/12. thanks again!
My
tslint.json
file is looking like this:and seems to be supported properly when I run it via command line (
node_modules/.bin/tslint src/*.ts
).If I try to use the same file with
broccoli-tslinter
I'm seeing the following error:If I change the file to:
I'm now seeing:
but I don't see all the errors that I see when running directly from the command line.
Any clue what's going on here?