A plugin that provides jscs with a cappuccino code style preset.
First you need to install jscs
:
$ npm install -g jscs
Next, install jscs-cappuccino
:
$ npm install jscs-cappuccino --save-dev
Finally, add a .jscsrc
file to your project root (if you don't have one already) and add the following items:
{
"plugins": ["jscs-cappuccino"],
"preset": "cappuccino"
}