Skip to content

Instantly share code, notes, and snippets.

@mikeerickson
Last active October 18, 2018 20:57
Show Gist options
  • Save mikeerickson/c5275fb21183c907d94ebff11ecf102b to your computer and use it in GitHub Desktop.
Save mikeerickson/c5275fb21183c907d94ebff11ecf102b to your computer and use it in GitHub Desktop.
.eslintrc.js
module.exports = {
"env": {
"es6": true,
"node": true,
"jest": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"indent": [
"error",
2
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
],
"no-console": ["error", {
allow: ['log']
}]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment