Hi,
I have some doubts with TSLint with ionic.
I have installed official TSLint rules for ionic from:
Then I have installed globally tslint with:
npm install tslint typescript -g
How can I test my project and obtain the results with the CLI?
I have already tried with:
tslint -p /pathToRootProject > test.txt
But I am not sure if this is correct way.
On the other hand I have tried to do:
tslint --fix semicolon
But it returns:
'semicolon' does not exist. This will be an error in TSLint 6.
What I am doing wrong?
Thanks