包详细信息

ember-template-lint-plugin-page-title

colenso54MIT1.0.1

A plugin for ember-template-lint to require that all route templates have a page title

ember-template-lint, ember-template-lint-plugin, handlebars, ember-page-title

自述文件

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',
  }
};