Skip to content

Instantly share code, notes, and snippets.

@peterdemartini
Created June 8, 2017 21:08
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 peterdemartini/82ec027ba11fbc2ff4375e16ef4924dc to your computer and use it in GitHub Desktop.
Save peterdemartini/82ec027ba11fbc2ff4375e16ef4924dc to your computer and use it in GitHub Desktop.
My Eslint
{
"root": true,
"extends": [
"eslint:recommended",
"prettier"
],
"rules": {
"semi": [ 2, "never" ],
"no-undefined": "error"
},
"env": {
"es6": true,
"browser": true,
"mocha": true,
"node": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment