Skip to content

Instantly share code, notes, and snippets.

@magician11
Created June 8, 2016 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save magician11/27f48af99edb742b1f18eabae188485b to your computer and use it in GitHub Desktop.
Save magician11/27f48af99edb742b1f18eabae188485b to your computer and use it in GitHub Desktop.
Andrew Golightly's personal eslint rules.
{
"extends": "airbnb",
"plugins": [
"react"
],
"rules": {
"max-len": [2, 122],
"comma-dangle": [0],
"react/jsx-closing-bracket-location": [1, "tag-aligned"]
},
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment