Skip to content

Instantly share code, notes, and snippets.

@jondcoleman
Last active November 22, 2016 16:57
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 jondcoleman/499d9ef9454da028adac to your computer and use it in GitHub Desktop.
Save jondcoleman/499d9ef9454da028adac to your computer and use it in GitHub Desktop.
module.exports = {
"extends": "airbnb",
"plugins": [
"react"
],
"rules": {
"semi": [
2,
"never"
],
"comma-dangle": 0,
"react/prefer-es6-class": 0,
"object-shorthand": 0,
"no-underscore-dangle": 0,
"func-names": 0,
"space-before-function-paren": ["error", "never"],
"linebreak-style": 0,
"no-param-reassign": ["error", { "props": false }]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment