0.0.5 • Published 5 years ago

lesshint-webpack-plugin v0.0.5

Weekly downloads
43
License
MIT
Repository
github
Last release
5 years ago

Lesshint Plugin for Webpack

Install

$ npm install lesshint-webpack-plugin

Usage

In your webpack configuration

var LessHintPlugin = require('lesshint-webpack-plugin');

module.exports = {
  // ...
  plugins: [
    new LessHintPlugin({
          files: [
                path.join(__dirname , './source/applications/**/*.less'),
                path.join(__dirname , './source/frame/**/*.less'),
                path.join(__dirname , '!./source/frame/bootstrap/**/*.less'),
                path.join(__dirname , './source/modules/**/*.less'),
                path.join(__dirname , './source/layouts/**/*.less')
          ],
          configFile: path.resolve(__dirname, '.lesshintrc')
      })
  ],
  // ...
}

Options

See lesshint options, for the complete list of options.

  • configFile: You can set the config file location for your lesshint options if not given it will look for a .lesshintrc file
  • files: You can set the glob pattern for finding files (absolute path).
  • reporter: You can set the reporter for lesshint. Default: lesshint-reporter-stylish