Similar to this question
I am running the following command to linting my angular2 typeScript code.
ng lint
It is proving all the linting error nicely.
But I want my vendor folder (let say "src/app/quote/services/generated/**/*") should not get included at the time of lining.
I know this can be done with tslint command as follows (Reference Here)
tslint \"src/**/*.ts\" -e \"**/__test__/**\"
But in angular cli what will be the parameter? How to exclude some files from tslint?
Note: My Angular Cli version is : @angular/cli: 1.0.0-rc.0
exclude
property under./src/tsconfig.app.json
, instead of.angular-cli.json
. – Essequibo