Skip to content

Instantly share code, notes, and snippets.

@captainGeech42
Last active November 7, 2016 20:51
Show Gist options
  • Save captainGeech42/03f0dc2284dd3ad4e804e0477c218bc8 to your computer and use it in GitHub Desktop.
Save captainGeech42/03f0dc2284dd3ad4e804e0477c218bc8 to your computer and use it in GitHub Desktop.
Linting standard for event-bot
{
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"no-console": "off",
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"windows"
],
"quotes": [
"warn",
"double"
],
"semi": [
"warn",
"always"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment