Skip to content

Instantly share code, notes, and snippets.

@4lg4
Last active April 24, 2018 01:24
Show Gist options
  • Save 4lg4/12221cf6a7e9d346903a4809d16a1de5 to your computer and use it in GitHub Desktop.
Save 4lg4/12221cf6a7e9d346903a4809d16a1de5 to your computer and use it in GitHub Desktop.
ESLint Google
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