This repository was archived by the owner on Aug 24, 2022. It is now read-only.
v0.4.4
CHANGELOG
- Add warning when using
ember-cli-template-lintwith a localization framework (identified byisLocalizationFramework
on the addon instance). When a localization framework is present, and thebare-stringsrule is not listed in the
.template-lintrc.jsfile, a warning will be issued saying:
The `bare-strings` rule must be configured when using a localization framework (`ember-i18n`).
To prevent this warning, add the following to your `.template-lintrc.js`:
rules: {
'bare-strings\': true
}