Skip to content

Instantly share code, notes, and snippets.

@charliecm
Created February 11, 2017 19:07
Show Gist options
  • Save charliecm/e0314ffefcfea93aa15a9807e67dfa8b to your computer and use it in GitHub Desktop.
Save charliecm/e0314ffefcfea93aa15a9807e67dfa8b to your computer and use it in GitHub Desktop.
My personal JS coding style.
{
"env": {
"browser": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-console": [
"warn"
],
"no-unused-vars": [
"warn"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment