Skip to content

idleberg/gulp-xml-validator

Repository files navigation

gulp-xml-validator

Gulp plugin to validate XML.

License Version GitHub branch check runs

Installation

$ npm install gulp-xml-validator --save-dev

Usage

// Gulpfile.mjs import gulp from 'gulp'; import { xmlValidator } from 'gulp-xml-validator'; gulp.task('lint', done => { gulp.src('**/*.xml') .pipe(xmlValidator()); done(); });

Note

This package encourages the use of ESM. Read how to migrate your Gulpfile.

Options

options.mimeType

Type: string
Default: "text/xml"

Allows modifying the MIME type passed to DOMParser().parseFromString().

License

This work is licensed under The MIT License.