styluslint-loader
v1.0.7
Published
Stylus lint loader for webpack
Downloads
4
Readme
webpack-styluslint-loader
Stylus lint loader for webpack. Based on stylint.
Installation
yarn add styluslint-loader -D
Usage
Place styluslint-loader
before stylus-loader
in your webpack config. For example:
{
test: /\.styl/,
use: [
'css-loader',
'stylus-loader',
'styluslint-loader' // make sure it goes before stylus loader
]
}