Is that possible to lint entire folder using tslint?
Using eslint it is possible to do eslint ./src
to validate whole folder.
When i try to do the same for tslint - i am getting an error Error: EISDIR: illegal operation on a directory
. In their examples on the site - they show how to validate single file, which is not the case usually.
Is that possible to validate my project without extra things like gulp-tslint
, just from the command line?
tslint src/**/*.ts
– Each