Last active
April 24, 2018 01:24
-
-
Save 4lg4/12221cf6a7e9d346903a4809d16a1de5 to your computer and use it in GitHub Desktop.
ESLint Google
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm install --save-dev eslint eslint-config-google | |
.eslintrc | |
{ | |
"extends": ["google"], | |
"rules": { | |
"max-len": 0, | |
"require-jsdoc": 0 | |
}, | |
"parserOptions": { | |
"ecmaVersion": 2017, | |
"experimentalObjectRestSpread": true, | |
"sourceType": "module" | |
}, | |
"env": { | |
"es6": true | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment