Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .eslint-doc-generatorrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@ const END_HEADER_MARKER = '<!-- end auto-generated rule header -->';

/** @type {import('eslint-doc-generator').GenerateOptions} */
module.exports = {
configEmoji: [
['recommended-gjs', '![gjs logo](/docs/svgs/gjs.svg)'],
['recommended-gts', '![gts logo](/docs/svgs/gts.svg)'],
['template-lint-migration', '📋'],
],
configEmoji: [['template-lint-migration', '📋']],
ruleDocSectionInclude: ['Examples'],
ruleDocTitleFormat: 'prefix-name',
ruleListSplit: 'meta.docs.category',
Expand Down
366 changes: 182 additions & 184 deletions README.md

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions docs/rules/avoid-using-needs-in-controllers.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# ember/avoid-using-needs-in-controllers

💼 This rule is enabled in the ✅ `recommended` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).

<!-- end auto-generated rule header -->

Avoid using `needs` to load other controllers. Inject the required controller instead. `needs` was deprecated in ember 1.x and removed in 2.0.
Expand Down
2 changes: 0 additions & 2 deletions docs/rules/closure-actions.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# ember/closure-actions

💼 This rule is enabled in the ✅ `recommended` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).

<!-- end auto-generated rule header -->

Always use closure actions (according to DDAU convention). Exception: only when you need bubbling.
Expand Down
2 changes: 2 additions & 0 deletions docs/rules/no-builtin-form-components.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# ember/no-builtin-form-components

💼 This rule is enabled in the ✅ `recommended` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).

<!-- end auto-generated rule header -->

This rule disallows the use of Ember's built-in form components (`Input` and `Textarea`) from `@ember/component` and encourages using native HTML elements instead.
Expand Down
2 changes: 0 additions & 2 deletions docs/rules/no-deeply-nested-dependent-keys-with-each.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# ember/no-deeply-nested-dependent-keys-with-each

💼 This rule is enabled in the ✅ `recommended` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).

<!-- end auto-generated rule header -->

Disallows usage of deeply-nested computed property dependent keys with `@each`.
Expand Down
2 changes: 0 additions & 2 deletions docs/rules/no-deprecated-router-transition-methods.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# ember/no-deprecated-router-transition-methods

💼 This rule is enabled in the ✅ `recommended` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).

🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).

<!-- end auto-generated rule header -->
Expand Down
2 changes: 0 additions & 2 deletions docs/rules/no-function-prototype-extensions.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# ember/no-function-prototype-extensions

💼 This rule is enabled in the ✅ `recommended` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).

<!-- end auto-generated rule header -->

By default, Ember extends certain native JavaScript objects with additional methods. This can lead to problems in some situations. One example is relying on these methods in an addon that is used inside an app that has the extensions disabled.
Expand Down
2 changes: 0 additions & 2 deletions docs/rules/no-get-with-default.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# ember/no-get-with-default

💼 This rule is enabled in the ✅ `recommended` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).

🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).

<!-- end auto-generated rule header -->
Expand Down
2 changes: 0 additions & 2 deletions docs/rules/no-implicit-injections.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# ember/no-implicit-injections

💼 This rule is enabled in the ✅ `recommended` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).

🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).

<!-- end auto-generated rule header -->
Expand Down
2 changes: 2 additions & 0 deletions docs/rules/no-modifier-without-element-usage.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# ember/no-modifier-without-element-usage

💼 This rule is enabled in the ✅ `recommended` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).

<!-- end auto-generated rule header -->

Disallow modifiers that never use their element.
Expand Down
2 changes: 0 additions & 2 deletions docs/rules/no-old-shims.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# ember/no-old-shims

💼 This rule is enabled in the ✅ `recommended` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).

🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).

<!-- end auto-generated rule header -->
Expand Down
2 changes: 0 additions & 2 deletions docs/rules/no-string-prototype-extensions.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# ember/no-string-prototype-extensions

💼 This rule is enabled in the ✅ `recommended` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).

<!-- end auto-generated rule header -->

By default, Ember extends certain native JavaScript objects with additional methods. This can lead to problems in some situations. One example is relying on these methods in an addon that is used inside an app that has the extensions disabled.
Expand Down
2 changes: 0 additions & 2 deletions docs/rules/no-test-module-for.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# ember/no-test-module-for

💼 This rule is enabled in the ✅ `recommended` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).

<!-- end auto-generated rule header -->

Use `module` instead of `moduleFor`.
Expand Down
2 changes: 0 additions & 2 deletions docs/rules/no-try-invoke.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# ember/no-try-invoke

💼 This rule is enabled in the ✅ `recommended` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).

<!-- end auto-generated rule header -->

This rule will catch and prevent the use of `tryInvoke`.
Expand Down
2 changes: 0 additions & 2 deletions docs/rules/no-volatile-computed-properties.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# ember/no-volatile-computed-properties

💼 This rule is enabled in the ✅ `recommended` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).

<!-- end auto-generated rule header -->

Volatile computed properties are deprecated as of Ember 3.9.
Expand Down
2 changes: 0 additions & 2 deletions docs/rules/routes-segments-snake-case.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# ember/routes-segments-snake-case

💼 This rule is enabled in the ✅ `recommended` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).

<!-- end auto-generated rule header -->

Dynamic segments in routes should use _snake case_, so Ember doesn't have to do extra serialization in order to resolve promises.
Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-builtin-component-arguments.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-builtin-component-arguments

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-link-href-attributes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-link-href-attributes

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-link-rel-noopener.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-link-rel-noopener

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-abstract-roles.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-abstract-roles

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-accesskey-attribute.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-accesskey-attribute

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-action-on-submit-button.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-action-on-submit-button

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-args-paths.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-args-paths

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-arguments-for-html-elements.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-arguments-for-html-elements

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-aria-hidden-body.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-aria-hidden-body

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-aria-unsupported-elements.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-aria-unsupported-elements

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-array-prototype-extensions.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-array-prototype-extensions

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-at-ember-render-modifiers.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-at-ember-render-modifiers

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-attrs-in-components.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-attrs-in-components

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-autofocus-attribute.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-autofocus-attribute

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-block-params-for-html-elements.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-block-params-for-html-elements

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-builtin-form-components.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-builtin-form-components

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-capital-arguments.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-capital-arguments

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-class-bindings.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-class-bindings

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

> **HBS Only**: This rule applies to classic `.hbs` template files only (loose mode). It is not relevant for `gjs`/`gts` files (strict mode), where these patterns cannot occur.

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-debugger.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-debugger

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-duplicate-attributes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-duplicate-attributes

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-duplicate-id.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-duplicate-id

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-duplicate-landmark-elements.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-duplicate-landmark-elements

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-empty-headings.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-empty-headings

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-extra-mut-helper-argument.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-extra-mut-helper-argument

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

> **HBS Only**: This rule applies to classic `.hbs` template files only (loose mode). It is not relevant for `gjs`/`gts` files (strict mode), where these patterns cannot occur.

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-forbidden-elements.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-forbidden-elements

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-heading-inside-button.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-heading-inside-button

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-html-comments.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-html-comments

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-index-component-invocation.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-index-component-invocation

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-inline-styles.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-inline-styles

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-invalid-aria-attributes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-invalid-aria-attributes

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-invalid-interactive.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-invalid-interactive

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/template-no-invalid-link-text.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember/template-no-invalid-link-text

💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): ✅ `recommended`, 📋 `template-lint-migration`.

<!-- end auto-generated rule header -->

Expand Down
Loading
Loading