Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 289 Bytes

indent_tab.md

File metadata and controls

28 lines (20 loc) · 289 Bytes

indent_tab

Switch the indentation style between tabs and spaces.

Options

  • true (default): Indent with tabs.
  • false : Indent with spaces.

Example

before:

SELECT
	*
FROM
	STUDENTS

result:

SELECT
    *
FROM
    STUDENTS