Deprecated in favor of vfile-to-eslint
Gulp task using remark and remark-lint to lint markdown files and output stylish results
$ npm install --save-dev gulp-remark-lint-dko
Outputs results to stdout.
var gulp = require('gulp');
var lint = require('gulp-remark-lint-dko');
gulp.task('lintmarkdown', function () {
return gulp.src('md/**/*.md')
.pipe(lint({
rules: {
'definition-case': false,
'emphasis-marker': '_',
}
}))
.pipe(lint.report());
});New project! Pull requests welcome!
- gulp error on for invalid files and rule config
- read rules from remark config files (package.json, rc file)
- fail on error/warning
- output results to file
- tests, CI on travis and auto-npm-publish
- add addt'l options, e.g. support for lint plugins
MIT © David O'Trakoun
