You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've had the same issue and took the time to go through the files in order to figure out what caused tslint to hang.
Result: We use stylus for our css styles and in one of the *.styl files there was the following line:
position: relative // relative for .tableConfigs position: absolute"
changing it to (removing the " at the end of the line fixes it): position: relative // relative for .tableConfigs position: absolute
Yeah, it can analyze stylus files as well but by default it doesn't. Take a look at the advanced configuration. Currently it thinks of the stylus files as CSS and thins seems to break something.
See discussion in angular/angular-cli#3404
I could pinpoint it down to these rules, each of which makes linting take forever:
Anyway I can debug into codelyzer live on my project? It's a proprietary codebase, so it's difficult to produce a repro.
The text was updated successfully, but these errors were encountered: