Created
January 19, 2018 09:40
-
-
Save linhmtran168/054105e15f6abe5341a9ce977a41b7c0 to your computer and use it in GitHub Desktop.
Eslint config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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