Skip to content

Instantly share code, notes, and snippets.

@lastday154
Created May 16, 2018 07:53
Show Gist options
  • Select an option

  • Save lastday154/d45cac73185be27f6f7144bad99eba22 to your computer and use it in GitHub Desktop.

Select an option

Save lastday154/d45cac73185be27f6f7144bad99eba22 to your computer and use it in GitHub Desktop.
eslint.json
{
"extends": "airbnb-base",
"env": {
"browser": true,
"node": true,
"commonjs": true,
"es6": true
},
"rules": {
"max-len": [
"error",
{
"code": 200
}
],
"no-plusplus": [
"error",
{
"allowForLoopAfterthoughts": true
}
],
"no-console": 0,
"no-param-reassign": 0,
"consistent-return": 0,
"indent": [
"error",
4,
{
"SwitchCase": 1
}
],
"prefer-destructuring": [
"error",
{
"array": false,
"object": false
},
{
"enforceForRenamedProperties": false
}
],
"comma-dangle": [
"error",
"never"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment