Skip to content

oro-oss/gulp-markuplint

Repository files navigation

gulp-markuplint

Gulp plugin for markuplint.

Install

$ npm install -D gulp-markuplint markuplint

Example

const gulp = require('gulp')
const { markuplint } = require('gulp-markuplint')

gulp('lint', () => {
  return gulp.src('*.html').pipe(
    markuplint({
      rulesetPath: '/path/to/.markuplintrc'
    })
  )
})

License

MIT