Skip to content

Instantly share code, notes, and snippets.

@linhmtran168
Created March 12, 2020 12:04
Show Gist options
  • Save linhmtran168/ea3897fdb9f40df40d57e4283f9b35ee to your computer and use it in GitHub Desktop.
Save linhmtran168/ea3897fdb9f40df40d57e4283f9b35ee to your computer and use it in GitHub Desktop.
ESLINT config
{
"env": {
"es6": true,
"node": true,
"browser": true,
"mocha": true
},
"extends": "standard",
"rules": {
"indent": [
"error",
4
],
"max-len": [
"error",
{ "code": 128 }
],
"semi": [
"error",
"always"
],
"space-before-function-paren": [
"error",
"never"
],
"curly": [
"error",
"multi-line"
],
"object-curly-spacing": [
"error",
"always"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment