Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 593 Bytes

File metadata and controls

21 lines (14 loc) · 593 Bytes

Stylecow plugins

Build Status

All stylecow plugins ready to use. More info

Simple usage:

var stylecow = require('stylecow-core');
var plugins  = require('stylecow-plugins');

//get all available plugins:
console.log(plugins.getAll());

//Use all available plugins:
var tasks = (new stylecow.Tasks()).use(plugins());

//Use only some plugins:
var tasks = (new stylecow.Tasks()).use(plugins(['prefixes', 'import', 'nested-rules']));