jscs-config-allenmoore
v1.0.0
Published
A shareable JSCS config
Downloads
7
Maintainers
Readme
JSCS Config AllenMoore
JSCS [shareable config] (https://github.com/allenmoore/jscs-config)
Installation
npm install jscs jscs-config-allenmoore --save-dev
Usage
JSCS [shareable config] (https://github.com/allenmoore/jscs-config)
In package.json
:
{
"scripts": {
"lint": "jscs ."
},
"devDependencies": {
"jscs": "",
"jscs-config-allenmoore": ""
},
"jscsConfig": {
"preset": "allenmoore"
}
}
Or:
{
"scripts": {
"lint": "jscs -p allenmoore ."
},
"devDependencies": {
"jscs": "",
"jscs-config-allenmoore": ""
}
}
Or, in .jscsrc
:
{
"preset": "allenmoore"
}
Then lint:
npm run lint