Skip to content

Instantly share code, notes, and snippets.

@parkerproject
Created August 18, 2016 00:32
Show Gist options
  • Select an option

  • Save parkerproject/32ef0f93632024d070f634f35697b2b5 to your computer and use it in GitHub Desktop.

Select an option

Save parkerproject/32ef0f93632024d070f634f35697b2b5 to your computer and use it in GitHub Desktop.
module.exports = {
'extends': 'airbnb',
'installedESLint': true,
'plugins': [
'react',
],
"rules": {
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"no-console": ["error", { allow: ["warn", "error", "log"] }]
},
"parserOptions":{
"ecmaFeatures":{
"experimentalObjectRestSpread" :true
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment