2.0.1 • Published 9 years ago
eslint-config-standard-deviation v2.0.1
eslint-config-standard-deviation
ESLint shared configuration for javascript
ES5,ES2015,ES.nextandReactprojects based onstandardshared eslint-config
What is different from standard eslint-config ?
standard shared eslint-config rules are almost fine but we do not like to force us to ...
- not use semicolon
; - put space before function parens
function foo ()

Installation
npm
npm install eslint-config-standard-deviation --save-devWITH dependencies
npm install eslint babel-eslint eslint-config-standard eslint-config-standard-react eslint-plugin-react eslint-plugin-promise eslint-plugin-standard --save-devOR add easily to projects using eslint-modules-standard-deviation
npm install eslint eslint-modules-standard-deviation --save-devWorks 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"]
}
}for Javascript ES5 only, use
Projects using eslint-config-standard-deviation
Contributing
- Documentation improvement
- Feel free to send any PR