Editorconfig Guide.e

Indentation size

EditorConfig key: indent-size

Indentation size

indent-size

This option defines how many characters (of the kind specified by indent-style) make up one indentation level.

Default value:

2

Possible values:

Any integer (min: 1)

Examples

2
if(true) {
··return;
}
4
if(true) {
····return;
}