Closed
Description
Versions.
Please run
ng --version
. If there's nothing outputted, please run in a Terminal:node --version
and paste the result here:
angular-cli: 1.0.0-beta.25.5
node: 6.8.0
os: linux x64
@angular/common: 2.3.1
@angular/compiler: 2.3.1
@angular/core: 2.3.1
@angular/flex-layout: 2.0.0-beta.1
@angular/forms: 2.3.1
@angular/http: 2.3.1
@angular/material: 2.0.0-beta.1
@angular/platform-browser: 2.3.1
@angular/platform-browser-dynamic: 2.3.1
@angular/router: 3.3.1
@angular/compiler-cli: 2.3.1
Repro steps.
Was this an app that wasn't created using the CLI? What change did you do on your code? etc.
- make a TS lint error in a basic project
- run
ng lint
The log given by the failure.
Normally this include a stack trace and some more information.
Notice that there's an error but not lines in the output.
Hard to correct :)
Mention any other details that might be useful.
If I go back to lint I had before in my package.json, it's working just fine :
"lint": "tslint \"src/**/*.ts\"
When I updated to beta-25.5 it was replaced by
"lint": "tslint \"src/**/*.ts\" --project src/tsconfig.json --type-check && tslint \"e2e/**/*.ts\" --project e2e/tsconfig.json --type-check",