Skip to content

Instantly share code, notes, and snippets.

@othiym23
Created July 27, 2014 20:25
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 othiym23/cd69cf1d71b1a85ade09 to your computer and use it in GitHub Desktop.
Save othiym23/cd69cf1d71b1a85ade09 to your computer and use it in GitHub Desktop.
standard .eslintrc used for editing ASI-based npm modules
{
"env" : {
"node" : true
},
"rules" : {
"curly" : 0,
"no-lonely-if" : 1,
"no-mixed-requires" : 0,
"no-underscore-dangle" : 0,
"no-unused-vars" : [2, {"vars" : "all", "args" : "after-used"}],
"no-use-before-define" : [2, "nofunc"],
"quotes" : [1, "double", "avoid-escape"],
"semi" : [2, "never"],
"space-after-keywords" : 1,
"space-infix-ops" : 0,
"strict" : 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment