Skip to content

Instantly share code, notes, and snippets.

@notgiorgi
Created September 7, 2016 11:45
Show Gist options
  • Save notgiorgi/e5f998805b818e57a7dddb68bdff6d31 to your computer and use it in GitHub Desktop.
Save notgiorgi/e5f998805b818e57a7dddb68bdff6d31 to your computer and use it in GitHub Desktop.
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"rules": {
"no-console" : 0,
"key-spacing" : [
"error",
{
"beforeColon" : true,
"afterColon" : true
}
],
"space-before-blocks": "error",
"space-before-function-paren" : [
"error",
{"anonymous": "always", "named": "never"}
],
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment