I want my tslint to ignore semicolons.
I would like to keep the rule "extends": "tslint:recommended"
. Right now, I just can´t follow this rule, which forces me to use semicolon always, or use this other one "semicolon": [true, "never"]
, which forces me to delete all semicolons.
I just want to ignore them. I can do it by deleting the "extends": "tslint:recommended"
but I would like to keep this rule and just ignore semicolons.
tslint documentation just gives the option to keep them always or delete always, but not ignore them.
Can someone help me?