Skip to content

Instantly share code, notes, and snippets.

@souenzzo
Created March 3, 2018 00:09
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 souenzzo/792bb5ad6db696a948c6569d791a5d7d to your computer and use it in GitHub Desktop.
Save souenzzo/792bb5ad6db696a948c6569d791a5d7d to your computer and use it in GitHub Desktop.
module.exports = {
"env": {
"es6": true,
"jest": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"no-console": "off"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment