IndentationStyle
public enum IndentationStyle
Style defining whether the rewriter shall indent or unindent and whether it shall use tabs or spaces and how many of them.
-
Indentation with a number of spaces.
Declaration
Swift
case indentSpaces(Int)
-
Reverse indentation of a number of spaces.
Declaration
Swift
case unindentSpaces(Int)
-
Indentation with a number of tabs
Declaration
Swift
case indentTabs(Int)
-
Reverse indentation of a number of tabs.
Declaration
Swift
case unindentTabs(Int)