GithubHelp home page GithubHelp logo

anthrax3 / stylelint-webpack-plugin Goto Github PK

View Code? Open in Web Editor NEW

This project forked from webpack-contrib/stylelint-webpack-plugin

0.0 2.0 0.0 529 KB

A webpack plugin to lint your CSS/Sass code using stylelint

License: MIT License

JavaScript 100.00%

stylelint-webpack-plugin's Introduction

Stylelint Plugin for Webpack v[1, 3]

Greenkeeper badge npm version Build Status Coverage Status js-semistandard-style

Why you might want to use this plugin instead of stylelint-loader

stylelint-loader lints the files you require or the ones you define as an entry in your webpack config. But @imports in those files are not followed, so just the main file (for each require/entry) is linted.

Instead, with stylelint-webpack-plugin you just define file globs, like stylelint does by default. So you get all your files linted.

Install

npm install --save-dev stylelint stylelint-webpack-plugin
# OR
yarn add --dev stylelint stylelint-webpack-plugin

Usage

In your webpack configuration

var StyleLintPlugin = require('stylelint-webpack-plugin');

module.exports = {
  // ...
  plugins: [
    new StyleLintPlugin(options),
  ],
  // ...
}

Options

See stylelint options for the complete list of options. This object is passed straight to the stylelint.lint function and has the following defaults:

  • configFile: You can change the config file location. Default: (undefined), handled by stylelint's cosmiconfig module.
  • context: String indicating the root of your SCSS files. Default: inherits from webpack config.
  • emitErrors: Pipe stylelint 'error' severity messages to the error message handler in webpack's current instance. Note when this property is disabled (false) all stylelint messages are piped to webpack's warning message handler. Default: true
  • failOnError: Throw a fatal error in the global build process (e.g. kill your entire build process on any stylelint 'error' severity message). Default: false
  • files: Change the glob pattern for finding files. Must be relative to options.context. Default: ['**/*.s?(a|c)ss']
  • formatter: Use a custom formatter to print errors to the console. Default: require('stylelint').formatters.string
  • lintDirtyModulesOnly: Lint only changed files, skip lint on start. Default: false
  • syntax: e.g. use 'scss' to lint .scss files. Default: undefined

Errors

The plugin will dump full reporting of errors. Set failOnError to true if you want webpack build process breaking with any stylelint error. You can use the quiet option to not print stylelint output to the console.

Acknowledgement

This project is basically a modified version of sasslint-webpack-plugin. It changed considerably since stylelint is async, and its Node API changes compared with sasslint.

Thanks to Javier (@vieron) for originally publishing this plugin, and passing the torch to our growing list of contributors! ๐Ÿ˜„

License

stylelint-webpack-plugin's People

Contributors

artyomtrityak avatar crash7 avatar esseb avatar ethanrutherford avatar greenkeeper[bot] avatar iblack10 avatar ihorkrys avatar jakxz avatar karlhorky avatar mattlewis92 avatar moritzkn avatar mquy avatar nickgcattaneo avatar o2dazone avatar sergesemashko avatar shellscape avatar vieron avatar vinnl avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.