Skip to content

Instantly share code, notes, and snippets.

@vinyoliver
Created February 11, 2019 13:22
Show Gist options
  • Select an option

  • Save vinyoliver/b1449f32f475ffe9ae51a8ab2fecc593 to your computer and use it in GitHub Desktop.

Select an option

Save vinyoliver/b1449f32f475ffe9ae51a8ab2fecc593 to your computer and use it in GitHub Desktop.

Revisions

  1. vinyoliver created this gist Feb 11, 2019.
    20 changes: 20 additions & 0 deletions .eslintrc
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,20 @@
    {
    "parser": "babel-eslint",
    "env": {
    "browser": true,
    "jest": true
    },
    "plugins": ["react", "jsx-a11y", "import"],
    "extends": "airbnb",
    "rules": {
    "react/jsx-filename-extension": [
    "error",
    {
    "extensions": [".js", ".jsx"]
    }
    ],
    "global-require": "off",
    "import/prefer-default-export": "off",
    "no-unused-expressions": ["error", { "allowTaggedTemplates": true }]
    }
    }