Created
October 2, 2017 13:45
-
-
Save tarzak/0deaa0e57c75e3642fc23171f5514bd7 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
{ | |
"extends": ["eslint:recommended", "plugin:react/recommended"], | |
"parser": "babel-eslint", | |
"env": { | |
"browser": true, | |
"node": true | |
}, | |
"plugins": [ | |
"react" | |
], | |
"rules": { | |
"no-debugger": 0, | |
"no-console": 0, | |
"new-cap": 0, | |
"strict": 0, | |
"no-underscore-dangle": 0, | |
"no-use-before-define": 0, | |
"eol-last": 1, | |
"quotes": [2, "single"], | |
"jsx-quotes": [1, "prefer-single"], | |
"react/jsx-no-undef": 1, | |
"react/jsx-uses-react": 1, | |
"react/jsx-uses-vars": 1, | |
"semi": 1, | |
"comma-dangle": 0 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment