Broccoli plugin that wraps remark-lint for linting Markdown files in a Broccoli build pipeline. Version 1.1.0 is the current stable release, with low release cadence. It differs from direct remark-lint usage by integrating into Broccoli's asset pipeline, allowing lint results to be generated as test output (QUnit or Mocha) or custom test generators. It accepts remark and unified-engine options, and supports .remarkrc configuration files.
npm install broccoli-lint-remarkNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates usage of broccoli-lint-remark with a funnel source, mocha test generator, and remark-lint plugin configuration.
Always set `testGenerator` to a supported string or provide a custom function.
Set `persist: false` if you want to force re-lint on every build.
Use `broccoli-lint-remark` only for generating test assertions, not for full tree linting.
Ensure your custom testGenerator returns a valid test output string.
Refer to unified-engine documentation for allowed options. If an option is ignored, consider using a .remarkrc configuration file.
Run `npm install --save-dev broccoli-lint-remark`
Change to `const LintRemark = require('broccoli-lint-remark');`Set `testGenerator: 'mocha'` (or 'qunit') or provide a custom function.