1.0.3 • Published 7 years ago

metalsmith-sass-lint v1.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

Metalsmith Sass Lint

Make sure your metalsmith project sass files are following your teams styleguide :)

Created due to no stylelint checking plugin found for metalsmith, and we needed something this for our production uses.

Usage

const Metalsmith = require('metalsmith');
const sasslint = require('metalsmit-sass-lint');

new Metalsmith()
    .source('styles')
    .use(sasslint({
        configFile: '.stylelintrc',
    }))
    .build();