Skip to content

Instantly share code, notes, and snippets.

@jastuccio
Last active September 21, 2018 09:40
Show Gist options
  • Select an option

  • Save jastuccio/62a97cdedbb79eb57c9c2356a010c973 to your computer and use it in GitHub Desktop.

Select an option

Save jastuccio/62a97cdedbb79eb57c9c2356a010c973 to your computer and use it in GitHub Desktop.

Revisions

  1. jastuccio revised this gist Sep 21, 2018. No changes.
  2. jastuccio created this gist Jul 24, 2018.
    28 changes: 28 additions & 0 deletions eslint.rc
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,28 @@
    {module.exports = {
    "parser": "babel-eslint",
    "env": {
    "browser": true,
    "es6": true
    },
    "settings": {
    "ecmascript": 6,
    "jsx": true
    },
    "parserOptions": {
    "ecmaVersion": 2017,
    "ecmaFeatures": {
    "experimentalObjectRestSpread": true,
    "experimentalDecorators": true,
    "jsx": true
    },
    "sourceType": "module"
    },
    "plugins": [
    "react",
    ],
    "extends": "airbnb",
    "rules": {
    "react/jsx-filename-extension": 0,
    "function-paren-newline": 0
    }
    };