I tried use tslint --fix
but get bash: tslint: command not found...
.
I installed tslint using command: yarn global add tslint typescript
.
My machine use Centos 7.
I tried use tslint --fix
but get bash: tslint: command not found...
.
I installed tslint using command: yarn global add tslint typescript
.
My machine use Centos 7.
I've run into the same problem recently. Yarn
output says it added "tslint"
binary, but it's lying. To actually install it you need to run Yarn
as root, so:
sudo yarn global add tslint typescript
I needed to delete the /node_modules folder and run npm install and it was fixed again
© 2022 - 2024 — McMap. All rights reserved.
yarn global add tslint typescript
? – Printmaker