Editorconfig Guide

Generate your .editorconfig file with ease.

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;
}