Ember wrapper for remark-lint.
ember install ember-cli-remark
After installation, configure your rules using the .remarkrc
file as shown in Remarks's configuration.
Furthermore, a .remarkignore
file can be used to exclude files from linting while the linter is running.
Its syntax is identical to .gitignore
files.
Remark will be run by ember-cli-qunit
or ember-cli-mocha
automatically when you run ember test.
If Remark is not being run automatically, try updating your ember-cli
and/or remark
dependencies.
ember-cli-remark
can be configured through the ember-cli-remark
(and remark
property) key in your ember-cli-build.js
file:
const app = new EmberApp(defaults, {
ember-cli-remark: {
testGenerator: 'qunit',
remark: {
quiet: true
}
}
});
-
testGenerator
is automatically detected ifember-qunit
/ember-cli-qunit
orember-mocha
/ember-cli-mocha
are used, but can also be set toqunit
andmocha
manually. -
remark
: Options avaliable in unified-engine docs.
If you want to contribute to this addon, please read the CONTRIBUTING.md.
We use SemVer for versioning. For the versions available, see the tags on this repository.
See the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details