eslint-modules-standard-deviation
Add linter settings easily to any javascript ES5
, ES2015
, ES.next
or React
project using shared eslint config, eslint-config-standard-deviation, and ESLint
Installation
npm
npm install eslint babel-eslint eslint-modules-standard-deviation --save-dev
Works only in npm 3
and beyond environments
Usage
Add extends
to project .eslintrc
{
"extends": ["standard-deviation"]
}
Add scripts to package.json
"scripts": {
"lint": "eslint . --ext .js,.jsx",
"testonly": "echo \"Error: no test specified\" && exit 1",
"test": "npm run lint && npm run testonly"
}
[optional] enable/disable eslint rules
{
"extends": ["standard-deviation"],
"rules": {
"space-before-function-paren": ["error", "always"]
}
}
Projects using eslint-modules-standard-deviation
Contributing
- Documentation improvement
- Feel free to send any PR
License
ISC