Last active
July 18, 2017 19:49
-
-
Save drguildo/46677308aa06c00401b697f4e9d78f55 to your computer and use it in GitHub Desktop.
My ESLint configuration
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
{ | |
"extends": "eslint:recommended", | |
"env": { | |
"es6": true, | |
"node": true | |
}, | |
"rules": { | |
"no-console": "off", | |
"prefer-const": "warn", | |
"no-unused-vars": "warn", | |
"no-var": "warn", | |
"semi": "error" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment