Skip to content

Instantly share code, notes, and snippets.

@linhmtran168
Created January 19, 2018 09:40
Show Gist options
  • Save linhmtran168/054105e15f6abe5341a9ce977a41b7c0 to your computer and use it in GitHub Desktop.
Save linhmtran168/054105e15f6abe5341a9ce977a41b7c0 to your computer and use it in GitHub Desktop.
Eslint config
{
"env": {
"es6": true,
"node": true
},
"extends": "standard",
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"windows"
],
"quotes": [
"error",
"single"
],
"space-before-function-paren": [0],
"semi": [
"error",
"always"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment