Editorconfig Guide.e

Indentation style

EditorConfig key: indent-style

Indentation style

indent-style

This option configures which type of indentation to use, e.g. spaces or tabs.

Default value:

space

Possible values:

  • space
  • tab

Examples

space
if(true) {
··return;
}
tab
if(true) {
→	return;
}