Skip to content

bassjobsen/less-plugin-csscomb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

less-plugin-csscomb

CSScomb helps you sort and categorize CSS properties in your code to improve maintenance of your stylesheets.

lessc usage

Install..

npm install -g less-plugin-csscomb

and then on the command line,

lessc file.less --csscomb

You can chose between the following configuration: csscomb (default), zen or yandex. The preceding configuration can be passed as an argument to the plugin:

lessc file.less --csscomb="yandex"

Alternatively use your own custom configuration by providing the path as an argument to the plugin:

lessc file.less --csscomb="config/test.json"

Programmatic usage

var LessPluginCSScomb = require('less-plugin-csscomb'),
    csscombPlugin = new LessPluginCSScomb("zen");
less.render(lessString, { plugins: [csscombPlugin] })
  .then(

Browser usage

Browser usage is not supported at this time.

About

CSScomb plugin for less.js

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published