This repository was archived by the owner on Aug 24, 2022. It is now read-only.
v0.4.7
CHANGELOG
- Update underlying
ember-template-lintto v0.5.10. - Add ability to mark specific rules as pending for a module. Given the following
.template-lintrc.jsfile, thefoo/bar/bazmodule 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-failingto emit rule specific pending list.