Skip to content

Instantly share code, notes, and snippets.

@MatthieuLemoine
Last active September 26, 2016 09:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MatthieuLemoine/cc2ae0cc3500929af04b3dcd9ad3fcfc to your computer and use it in GitHub Desktop.
Save MatthieuLemoine/cc2ae0cc3500929af04b3dcd9ad3fcfc to your computer and use it in GitHub Desktop.
Node ES6 eslint config
{
"extends": "airbnb",
"env" : {
"node" : true
},
"ecmaFeatures": {
"modules" : false
},
"rules" : {
"no-multi-spaces" : 0,
"key-spacing" : [1,{
"beforeColon" : true,
"afterColon" : true,
"mode" : "minimum"
}],
"no-use-before-define" : 0,
"no-param-reassign" : 0,
"comma-dangle" : 0,
"new-cap" : 0,
"no-confusing-arrow" : 0,
"arrow-parens" : 0,
"no-console" : 0,
"no-underscore-dangle" : 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment