Created
August 20, 2017 21:11
-
-
Save qleguennec/b90f80a5fb9beb2c3af7c5f9bee83685 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"parser": "babel-eslint", | |
"plugins": [ "react" ], | |
"env": { | |
"browser": true, | |
"es6": true, | |
"node": true | |
}, | |
"rules": { | |
"consistent-return": [0], | |
"key-spacing": [0], | |
"quotes": [0], | |
"new-cap": [0], | |
"no-multi-spaces": [0], | |
"no-shadow": [0], | |
"no-unused-vars": [1], | |
"no-use-before-define": [2, "nofunc"], | |
"react/jsx-no-undef": 1, | |
"react/jsx-uses-react": 1, | |
"react/jsx-uses-vars": 1 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment