Skip to content

Instantly share code, notes, and snippets.

@abumostafa
Created February 5, 2019 10:42
Show Gist options
  • Save abumostafa/2ab2042f4bcffcb89320845fa7bf74df to your computer and use it in GitHub Desktop.
Save abumostafa/2ab2042f4bcffcb89320845fa7bf74df to your computer and use it in GitHub Desktop.
React Eslint
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"modules": true,
"experimentalObjectRestSpread": true
}
},
"plugins": [
"react"
],
"extends": ["eslint:recommended", "plugin:react/recommended"],
"rules": {
"comma-dangle": 0
},
"settings": {
"react": {
"pragma": "React",
"version": "15.4.2"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment