How do we not allow hard tabs in my codebase? We are using JSHint.
I think smarttabs only disallows mixed tabs on the same line.
What option should we be using to achieve this?
How do we not allow hard tabs in my codebase? We are using JSHint.
I think smarttabs only disallows mixed tabs on the same line.
What option should we be using to achieve this?
JSCS validateIndentation is the relevant option. It corresponds to the (deprecated) JSHint indent option.