Skip to content

Instantly share code, notes, and snippets.

@slugbyte
Created March 1, 2016 19:06
Show Gist options
  • Save slugbyte/2a4077fefefc3db3aa9a to your computer and use it in GitHub Desktop.
Save slugbyte/2a4077fefefc3db3aa9a to your computer and use it in GitHub Desktop.
{
"rules": {
"no-console": 0,
"indent": [
2,
2
],
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
]
},
"env": {
"es6": true,
"node": true,
"browser": true
},
"globals": {
"describe": false,
"it": false,
"beforeEach": false,
"afterEach": false,
"before": false,
"after": false
},
"ecmaFeatures": {
"modules": true,
"experimentalObjectRestSpread": true
},
"extends": "eslint:recommended"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment