After creating a new project with "ng new" and after modifying tslint.json to use tabs instead of spaces, running "ng lint --fix=true" doesn't have any effect on .ts files:
ng lint --fix=true
only lists errors, but doesn't fix them. According to the documentation, it should though.
ERROR: 4:1 indent tab indentation expected
ERROR: 5:1 indent tab indentation expected
ERROR: 6:1 indent tab indentation expected
ERROR: 9:1 indent tab indentation expected
Env: Angular CLI: 10.1.7
Is the command wrong?

