Skip to content

Instantly share code, notes, and snippets.

@maxmckenzie
Last active July 29, 2019 09:02
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 maxmckenzie/195e02c96ee461f74c7cf5b7bb7e108d to your computer and use it in GitHub Desktop.
Save maxmckenzie/195e02c96ee461f74c7cf5b7bb7e108d to your computer and use it in GitHub Desktop.
eslint config #config
module.exports = {
"extends": "standard",
"plugins": [
"standard",
"promise"
],
"rules": {
// i know... i'm happy to omit them
// but mi dios, its like walking down the street wearing real fur
"semi": ["error", "always"]
},
"globals" : {
"pending" : false,
"browser" : false,
"expect" : false,
"describe" : false,
"it" : false,
"before" : false,
"beforeEach" : false,
"after" : false,
"afterEach" : false
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment