Skip to content

Instantly share code, notes, and snippets.

@ctsstc
Created May 20, 2017 00:26
Show Gist options
  • Save ctsstc/ab81a3ca6d20184d74de3c8dace793b3 to your computer and use it in GitHub Desktop.
Save ctsstc/ab81a3ca6d20184d74de3c8dace793b3 to your computer and use it in GitHub Desktop.
eslint for sanity
{
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
"error",
2
],
"quotes": [
"warn",
"single"
],
"semi": [
"error",
"always"
],
"no-console": "off"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment