Skip to content

Instantly share code, notes, and snippets.

@cziem
Created November 3, 2018 14:43
Show Gist options
  • Save cziem/b9034e56eda3c27f45e59553e5a86de2 to your computer and use it in GitHub Desktop.
Save cziem/b9034e56eda3c27f45e59553e5a86de2 to your computer and use it in GitHub Desktop.
eslintrc configurations
{
"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