Last active
December 1, 2018 21:09
-
-
Save stivncastillo/dfa42d89cd2dff19b526cc8ac461642f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends": "airbnb", | |
"parser": "babel-eslint", | |
"env": { | |
"browser": true | |
}, | |
"plugins": [ | |
"react" | |
], | |
"rules": { | |
"react/jsx-filename-extension": [ | |
2, | |
{ | |
"extensions": [ | |
".js", | |
".jsx" | |
] | |
} | |
], | |
"react/forbid-prop-types": [ | |
0 | |
], | |
"react/require-default-props": [ | |
0 | |
], | |
"global-require": [ | |
0 | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment