Add linter settings easily to any javascript
ES5
,ES2015
,ES.next
orReact
project using shared eslint config, eslint-config-standard-deviation, and ESLint
npm install eslint babel-eslint eslint-modules-standard-deviation --save-dev
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"]
}
}
- Documentation improvement
- Feel free to send any PR