1.0.1 • Published 1 year ago

ember-template-lint-plugin-page-title v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

ember-template-lint-plugin-page-title

An ember-template-lint plugin that enforces every route template to have a page title set using the {{page-title}} helper.

Compatibility

Install

yarn add -D ember-template-lint-plugin-page-title

As one of the peerDependencies, ember-template-lint will have to be installed in your project.

To use it, merge the following object to your .template-lintrc.js file:

module.exports = {
  plugins: ["ember-template-lint-plugin-page-title"],

  rules: {
    "require-valid-page-title": 'warn',
  }
};