Skip to content
This repository was archived by the owner on Aug 24, 2022. It is now read-only.

v0.4.7

Choose a tag to compare

@rwjblue rwjblue released this 14 May 19:24
· 573 commits to master since this release

CHANGELOG

  • Update underlying ember-template-lint to v0.5.10.
  • Add ability to mark specific rules as pending for a module. Given the following .template-lintrc.js file, the foo/bar/baz module would have only its indentation related issues labeled as warnings:
module.exports = {
  extends: 'recommended',
  pending: [
    { moduleId: 'foo/bar/baz', only: ['block-indentation']}
  ]
}
  • Update ember template-lint:print-failing to emit rule specific pending list.