pug-lint-loader
Pug lint loader for webpack
Install
$ npm install pug-lint-loader --save-dev
Usage
In your webpack configuration
moduleexports = // ... module: rules: test: /\.$/ exclude: /node_modules/ loader: "pug-lint-loader" options: 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.
Errors or Warning?
You can still force this behavior by using emitError
:
emitError
(default: true
)
Loader will always return errors if this option is set to true
.
moduleexports = entry: "..." module: rules: test: /\.$/ exclude: /node_modules/ loader: "pug-lint-loader" options: Object
License
MIT License