Created
November 3, 2018 14:43
-
-
Save cziem/b9034e56eda3c27f45e59553e5a86de2 to your computer and use it in GitHub Desktop.
eslintrc configurations
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" | |
], | |
"plugins": [ | |
"react", | |
"jsx-a11y", | |
"import" | |
], | |
"parserOptions": { | |
"ecmaVersion": 6, | |
"sourceType": "module", | |
"ecmaFeatures": { | |
"jsx": true, | |
"modules": true, | |
"experimentalObjectRestSpread": true | |
} | |
}, | |
"rules": { | |
"no-unused-vars": "off", | |
"react/jsx-filename-extension": 0, | |
"semi": "off", | |
"no-undef": "off", | |
"eol-last": "off", | |
"import/no-named-as-default": 0, | |
"import/no-named-as-default-member": 0, | |
"comma-dangle": "off", | |
"no-console": "off" | |
}, | |
"parser": "babel-eslint" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment