Created
November 11, 2018 12:45
-
-
Save jamesmcallister/75a7e5cb8c721372e45ef6e5e313ab51 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
{ | |
"env": { | |
"browser": true, | |
"mocha": true, | |
"node": true, | |
"jest": true | |
}, | |
"globals": { | |
"module": false, | |
"browser": true, | |
"Promise": true | |
}, | |
"parser": "babel-eslint", | |
"parserOptions": { | |
"sourceType": "module", | |
"ecmaFeatures": { | |
"jsx": true | |
} | |
}, | |
"extends": ["react-app", "prettier"], | |
"plugins": ["react-app", "prettier"], | |
"rules": { | |
"no-undefined": "error", | |
"no-unused-vars": "warn", | |
"no-unused-expressions": "off", | |
"react/prop-types": 0, | |
"react/jsx-curly-spacing": 0, | |
"react/jsx-wrap-multilines": 0, | |
"jsx-ally/href-no-hash": 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment