JS.VUE.HTML.INDENT

Enforce consistent indentation in '<template>'

Rule Details

This rule enforces a consistent indentation style in <template>. The default style is 2 spaces.

  • This rule checks all tags, also all expressions in directives and mustaches.
  • In the expressions, this rule supports ECMAScript 2022 syntaxes. It ignores unknown AST nodes, but it might be confused by non-standard syntaxes.

{'vue/html-indent': ['error']}

Copy
<template>
  <!-- GOOD -->
  <div class="foo">
    Hello.
  </div>
  <div class="foo">
    Hello.
  </div>
  <div class="foo"
       :foo="bar"
  >
    World.
  </div>
  <div
    id="a"
    class="b"
    :other-attr="{
      aaa: 1,
      bbb: 2
    }"
    @other-attr2="
      foo();
      bar();
    "
  >
    {{
      displayMessage
    }}
  </div>

  <!-- BAD -->
 <div class="foo">
   Hello.
    </div>
</template>

Options

Copy
{
  "vue/html-indent": ["error", type, {
    "attribute": 1,
    "baseIndent": 1,
    "closeBracket": 0,
    "alignAttributesVertically": true,
    "ignores": []
  }]
}
  • type (number | "tab") ... The type of indentation. Default is 2. If this is a number, it's the number of spaces for one indent. If this is "tab", it uses one tab for one indent.
  • attribute (integer) ... The multiplier of indentation for attributes. Default is 1.
  • baseIndent (integer) ... The multiplier of indentation for top-level statements. Default is 1.
  • closeBracket (integer | object) ... The multiplier of indentation for right brackets. Default is 0.
    You can apply all of the following by setting a number value.
  • closeBracket.startTag (integer) ... The multiplier of indentation for right brackets of start tags (<div>). Default is 0.
  • closeBracket.endTag (integer) ... The multiplier of indentation for right brackets of end tags (</div>). Default is 0.
  • closeBracket.selfClosingTag (integer) ... The multiplier of indentation for right brackets of start tags (<div/>). Default is 0.
  • alignAttributesVertically (boolean) ... Condition for whether attributes should be vertically aligned to the first attribute in multiline case or not. Default is true
  • ignores (string[]) ... The selector to ignore nodes. The AST spec is here (https://github.com/vuejs/vue-eslint-parser/blob/master/docs/ast.md). You can use esquery (https://github.com/estools/esquery#readme) to select nodes. Default is an empty array.

2, {"attribute": 1, "closeBracket": 1}

{'vue/html-indent': ['error', 2, {attribute: 1, closeBracket: 1}]}

Copy
<template>
  <!-- GOOD -->
  <div
    id="a"
    class="b"
    other-attr=
      "{longname: longvalue}"
    other-attr2
      ="{longname: longvalue}"
    >
    Text
  </div>
</template>

2, {"attribute": 2, "closeBracket": 1}

{'vue/html-indent': ['error', 2, {attribute: 2, closeBracket: 1}]}

Copy
<template>
  <!-- GOOD -->
  <div
      id="a"
      class="b"
      other-attr=
        "{longname: longvalue}"
      other-attr2
        ="{longname: longvalue}"
    >
    Text
  </div>
</template>

2, {"ignores": ["VAttribute"]}

{'vue/html-indent': ['error', 2, {ignores: ['VAttribute']}]}

Copy
<template>
  <!-- GOOD -->
  <div
  id=""
    class=""
  />
</template>

2, {"alignAttributesVertically": false}

{'vue/html-indent': ['error', 2, {alignAttributesVertically: false}]}

Copy
<template>
  <!-- GOOD -->
  <div id=""
    class=""
    some-attr=""
  />

  <!-- BAD -->
  <div id=""
       class=""
       some-attr=""
  />
</template>

2, {"baseIndent": 0}

{'vue/html-indent': ['error', 2, {baseIndent: 0}]}

Copy
<template>
<!-- GOOD -->
<div>
  <span>
    Hello!
  </span>
</div>

  <!-- BAD -->
  <div>
    <span>
      Hello!
    </span>
  </div>
</template>

The content on this page is adapted from the ESLint User Guide. Copyright © OpenJS Foundation and other contributors, www.openjsf.org. All rights reserved. https://eslint.org/docs/rules/