Skip to content

csmets/metalsmith-sass-lint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

Installation

npm install metalsmith-sass-lint --save-dev

Usage

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

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

About

Metalsmith plugin for sass lint checker

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors