Skip to content

Instantly share code, notes, and snippets.

@nathanstilwell
Last active September 19, 2015 23:51
Show Gist options
  • Save nathanstilwell/3ed963f5d6394b510c70 to your computer and use it in GitHub Desktop.
Save nathanstilwell/3ed963f5d6394b510c70 to your computer and use it in GitHub Desktop.
This is an ESLint config I'm using. I'll update and us it as a reference
{
"rules": {
"quotes": [2, "single"],
"linebreak-style": [2, "unix"],
"semi": [2, "always"]
},
"env": {
"es6": true,
"node": true,
"browser": true
},
"extends": "eslint:recommended",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
},
"plugins": [
"react"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment