Indent style

EditorConfig key: js-indent-style

Indent style

js-indent-style

Whether indentation uses tab characters or spaces.

Default value:

space

Possible values:

  • tab
  • space

Examples

tab
function f() {
	return;
}
space
function f() {
  return;
}