Last active
November 8, 2019 22:38
-
-
Save smkamranqadri/40e49f3bd644ea9be4700e7aa96a7513 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", "prettier", "prettier/react"], | |
"plugins": ["prettier"], | |
"rules": { | |
"react/jsx-filename-extension": [ | |
1, | |
{ | |
"extensions": [".js", ".jsx"] | |
} | |
], | |
"react/prop-types": 0, | |
"no-underscore-dangle": 0, | |
"import/imports-first": ["error", "absolute-first"], | |
"import/newline-after-import": "error", | |
"import/prefer-default-export": 0, | |
"semi": "error" | |
}, | |
"globals": { | |
"window": true, | |
"document": true, | |
"localStorage": true, | |
"FormData": true, | |
"FileReader": true, | |
"Blob": true, | |
"navigator": true, | |
"Headers": true, | |
"Request": true, | |
"fetch": true | |
}, | |
"parser": "babel-eslint" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment