# ember/template-block-indentation 🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix). Migrated from [ember-template-lint/block-indentation](https://github.com/ember-template-lint/ember-template-lint/blob/master/docs/rule/block-indentation.md). ## Rule Details Forces valid indentation for blocks and their children. 1. Forces block begin and block end statements to be at the same indentation level, when not on one line. 2. Forces children of all blocks to start at a single indentation level deeper. ## Configuration | Name | Type | | :--------------- | :------ | | `ignoreComments` | Boolean | | `indentation` | Integer | ## Examples Examples of **incorrect** code for this rule: ```hbs {{#each foo as |bar|}}{{/each}} ``` ```hbs
{{t 'greeting'}}
{{t 'Stuff here!'}}
{{t 'greeting'}}