Pug lint loader for webpack
$ npm install pug-lint-loader --save-devIn your webpack configuration
module.exports = {
  // ...
  module: {
    rules: [
      {
        test: /\.(pug|jade)$/,
        exclude: /node_modules/,
        loader: "pug-lint-loader",
        options: require('./.pug-lintrc.js'),
        enforce: "pre"
      },
    ],
  },
  // ...
}To be safe, you should use enforce: "pre" section to check source files, not modified
by other loaders (like pug-loader)
You can pass puglint options using standard webpack loader options.
You can still force this behavior by using emitError:
Loader will always return errors if this option is set to true.
module.exports = {
  entry: "...",
  module: {
    rules: [
      {
        test: /\.(pug|jade)$/,
        exclude: /node_modules/,
        loader: "pug-lint-loader",
        options: Object.assign({
          emitError: true,
        }, require('./.pug-lintrc.js'))
      },
    ],
  },
}MIT License