checkTabCharacterUsed
Checks if tab characters are used, since the length of a tab can vary it
is therefore advised to use spaces instead. Using \t
or char(9)
is
not reported instead. In case of multiple violations per line of code,
only one violation per line is shown in the report. This check has an
auto-fixer. Clicking the Fix all button in the report fixes all
violations for this check, clicking the Fix all in this file button
fixes all violations for this check for one file. The Fix on this line
button applies the fix on one individual line. The auto-fixer inserts
spaces. For more information, see section Automatic fixes. In the HTML report at most
one violation of the same type per line of code will be shown for this
check.
Configurable parameter
- IndentationLength (double): The indentation length of indented code should be divisible by the parameter IndentationLength. The default value for this parameter is 4 and it can be changed to anywhere between 1 and 12.
Exemption tag: %@ok<TABCU>