https://github.com/ekorzun/webpack-styluslint-loader
https://github.com/ekorzun/webpack-styluslint-loader
linter stylus webpack3
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ekorzun/webpack-styluslint-loader
- Owner: ekorzun
- Created: 2018-03-09T17:38:52.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-10T09:06:42.000Z (about 7 years ago)
- Last Synced: 2024-03-23T11:57:41.184Z (about 1 year ago)
- Topics: linter, stylus, webpack3
- Language: JavaScript
- Size: 58.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# webpack-styluslint-loader
Stylus lint loader for webpack. Based on [stylint](https://simenb.github.io/stylint/).
## Installation
```
yarn add styluslint-loader -D
```## Usage
Place `styluslint-loader` before `stylus-loader` in your webpack config. For example:
```js
{
test: /\.styl/,
use: [
'css-loader',
'stylus-loader',
'styluslint-loader' // make sure it goes before stylus loader
]
}
```