Skip to content

Instantly share code, notes, and snippets.

@extrabacon
Created July 24, 2015 18:29
Show Gist options
  • Save extrabacon/19fe9951ec0472098493 to your computer and use it in GitHub Desktop.
Save extrabacon/19fe9951ec0472098493 to your computer and use it in GitHub Desktop.
ESLint configurations for Node 0.12
{
"env": {
"node": true
},
"ecmaFeatures": {
"forOf": true,
"arrowFunctions": true,
"generators": true,
"blockBindings": true,
"binaryLiterals": true,
"octalLiterals": true
},
"globals": {
"Map": true,
"Set": true,
"WeakMap": true,
"WeakSet": true,
"Symbol": true,
"Promise": true
}
}
{
"env": {
"node": true
},
"ecmaFeatures": {
"forOf": true
},
"globals": {
"Map": true,
"Set": true,
"WeakMap": true,
"WeakSet": true,
"Symbol": true,
"Promise": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment