0.0.2 • Published 4 years ago

vue-pug-lint-loader v0.0.2

Weekly downloads
235
License
MIT
Repository
github
Last release
4 years ago

vue-pug-lint-loader

Vue pug lint loader for webpack

Install

$ npm install vue-pug-lint-loader --save-dev

Usage

In your webpack configuration

module.exports = {
  // ...
  module: {
    rules: [
      {
        test: /\.vue$/,
        exclude: /node_modules/,
        loader: "vue-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)

Options

You can pass puglint options using standard webpack loader options.

License

MIT License