stylelint-config-bright
v1.0.3
Published
Stylelint config for Bright Interactive
Maintainers
Readme
stylelint-config-bright
Simple in-house styelint config used by Bright Interactive
Install
$ npm install stylelint-config-brightUsage
Using Gulp to lint your files via postcss
var brightconfig = require('stylelint-config-bright');
gulp.task('csslint', function() {
return gulp.src('css/file/to/lint.css')
.pipe(postcss([stylelint(brightconfig)]));
});Developing
The tests consist of a simple jshint lint of the javascript. To run, type:
$ npm test