Skip to content

ember-template-lint/ember-template-lint

Repository files navigation

ember-template-lint

npm version Build Status

ember-template-lint is a library that will lint your handlebars template and return error results.

For example, if the rule no-bare-strings is enabled, this template would be in violation:

{{! app/components/my-thing/template.hbs  }}
<div>A bare string</div>

When the ember-template-lint executable is run, we would have a single result indicating that the no-bare-strings rule found an error.

Requirements

  • Node.js ^18.18.0 || ^20.9.0 || >=21.1.0

Installation

npm install --save-dev ember-template-lint
yarn add --dev ember-template-lint

Note: this library is installed by default with new Ember apps.

Usage

While ember-template-lint does have a Node API, the main way to use it is through its executable, which is intended to be installed locally within a project.

Basic usage is as straightforward as

ember-template-lint .

Workflow Examples

See documentation on workflow examples.

See documentation on the todo functionality.

Configuration

Project Wide

You can turn on specific rules by toggling them in a .template-lintrc.js file at the base of your project, or at a custom relative path which may be identified using the CLI:

module.exports = {
  extends: 'recommended',

  rules: {
    'no-bare-strings': true,
  },
};

For more detailed information see configuration.

Presets

Name Description
βœ… recommended Enables the recommended rules.
πŸ’… stylistic Enables stylistic rules for those who aren't ready to adopt ember-template-lint-plugin-prettier (including stylistic rules that were previously in the recommended preset in ember-template-lint v1).
⌨️ a11y Enables A11Y rules. Its goal is to include all A11Y related rules, therefore it does not follow the same SemVer policy as the other presets. Please see versioning for more details.

Rules

Each rule has emojis denoting:

  • what configuration it belongs to
  • πŸ”§ if some problems reported by the rule are automatically fixable by the --fix command line option
Name βœ… πŸ’… ⌨️ πŸ”§
attribute-indentation
attribute-order πŸ”§
block-indentation πŸ’… πŸ”§
builtin-component-arguments βœ…
deprecated-inline-view-helper βœ…
deprecated-render-helper βœ…
eol-last πŸ’… πŸ”§
inline-link-to πŸ”§
linebreak-style πŸ’…
link-href-attributes βœ… ⌨️
link-rel-noopener βœ… πŸ”§
modifier-name-case πŸ’… πŸ”§
no-abstract-roles βœ… ⌨️
no-accesskey-attribute βœ… ⌨️ πŸ”§
no-action βœ…
no-action-modifiers
no-action-on-submit-button βœ…
no-args-paths βœ…
no-arguments-for-html-elements βœ…
no-aria-hidden-body βœ… ⌨️ πŸ”§
no-aria-unsupported-elements βœ… ⌨️
no-array-prototype-extensions βœ… πŸ”§
no-at-ember-render-modifiers βœ…
no-attrs-in-components βœ…
no-autofocus-attribute βœ… ⌨️
no-bare-strings
no-block-params-for-html-elements βœ…
no-builtin-form-components βœ…
no-capital-arguments βœ…
no-class-bindings βœ…
no-curly-component-invocation βœ… πŸ”§
no-debugger βœ…
no-duplicate-attributes βœ… ⌨️ πŸ”§
no-duplicate-id βœ… ⌨️
no-duplicate-landmark-elements βœ… ⌨️
no-dynamic-subexpression-invocations
no-element-event-actions
no-empty-headings βœ… ⌨️
no-extra-mut-helper-argument βœ…
no-forbidden-elements βœ…
no-heading-inside-button βœ… ⌨️
no-html-comments βœ… πŸ”§
no-implicit-this βœ…
no-index-component-invocation βœ…
no-inline-styles βœ…
no-input-block βœ…
no-input-tagname βœ…
no-invalid-aria-attributes βœ… ⌨️
no-invalid-interactive βœ… ⌨️
no-invalid-link-text βœ… ⌨️
no-invalid-link-title βœ… ⌨️
no-invalid-meta βœ… ⌨️
no-invalid-role βœ… ⌨️
no-link-to-positional-params βœ…
no-link-to-tagname βœ…
no-log βœ…
no-model-argument-in-route-templates πŸ”§
no-multiple-empty-lines πŸ’… πŸ”§
no-mut-helper
no-negated-condition βœ… πŸ”§
no-nested-interactive βœ… ⌨️
no-nested-landmark βœ… ⌨️
no-nested-splattributes βœ…
no-obscure-array-access βœ… πŸ”§
no-obsolete-elements βœ… ⌨️
no-outlet-outside-routes βœ…
no-partial βœ…
no-passed-in-event-handlers βœ…
no-pointer-down-event-binding βœ… ⌨️
no-positional-data-test-selectors βœ… πŸ”§
no-positive-tabindex βœ… ⌨️
no-potential-path-strings βœ…
no-quoteless-attributes βœ… πŸ”§
no-redundant-fn βœ… πŸ”§
no-redundant-role βœ… ⌨️ πŸ”§
no-restricted-invocations
no-route-action βœ…
no-scope-outside-table-headings βœ… ⌨️
no-shadowed-elements βœ…
no-this-in-template-only-components πŸ”§
no-trailing-spaces πŸ’… πŸ”§
no-triple-curlies βœ…
no-unbalanced-curlies βœ…
no-unbound βœ…
no-unknown-arguments-for-builtin-components βœ… πŸ”§
no-unnecessary-component-helper βœ… πŸ”§
no-unnecessary-concat πŸ’… πŸ”§
no-unnecessary-curly-parens βœ… πŸ”§
no-unnecessary-curly-strings βœ… πŸ”§
no-unsupported-role-attributes βœ… ⌨️ πŸ”§
no-unused-block-params βœ…
no-valueless-arguments βœ…
no-whitespace-for-layout βœ… ⌨️
no-whitespace-within-word βœ… ⌨️
no-with βœ…
no-yield-only βœ…
no-yield-to-default βœ…
quotes πŸ’… πŸ”§
require-aria-activedescendant-tabindex βœ… ⌨️
require-button-type βœ… πŸ”§
require-context-role βœ… ⌨️
require-each-key
require-form-method
require-has-block-helper βœ… πŸ”§
require-iframe-title βœ… ⌨️
require-input-label βœ… ⌨️
require-lang-attribute βœ… ⌨️
require-mandatory-role-attributes βœ… ⌨️
require-media-caption βœ… ⌨️
require-presentational-children βœ… ⌨️
require-splattributes
require-valid-alt-text βœ… ⌨️
require-valid-named-block-naming-format βœ… πŸ”§
self-closing-void-elements πŸ’… πŸ”§
simple-modifiers βœ…
simple-unless βœ… πŸ”§
splat-attributes-only βœ…
style-concatenation βœ…
table-groups βœ… ⌨️
template-length

Supporting the --fix option

You can add a fixer to a rule. See fixer documentation for more details.

Sharing configs

It is possible to share a config (extends) or plugin (custom rules) across projects. See ember-template-lint-plugin-peopleconnect for an example.

Defining your own rules

You can define and use your own custom rules using the plugin system. See plugin documentation for more details.

Semantic Versioning Policy

The semver policy for this addon can be read here: semver policy.

Contributing

See the Contributing Guidelines for information on how to help out.

License

This project is licensed under the MIT License.