Last active
January 12, 2018 03:54
-
-
Save allanbian1017/b26268eb920226d6591951d75f9966b0 to your computer and use it in GitHub Desktop.
ESLint config template
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": "google", | |
"rules": { | |
"semi": "error", | |
"linebreak-style": "off", | |
"no-unused-vars": ["error", {"varsIgnorePattern": "should"}], | |
"no-undef": "error", | |
"no-var": "error", | |
"prefer-arrow-callback": "error" | |
}, | |
"env": { | |
"node": true, | |
"es6": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment