Skip to content

Instantly share code, notes, and snippets.

@radiovisual
Last active September 18, 2025 07:55
Show Gist options
  • Save radiovisual/7c27e5a1d0f7aa56e0e3922c98e19ffc to your computer and use it in GitHub Desktop.
Save radiovisual/7c27e5a1d0f7aa56e0e3922c98e19ffc to your computer and use it in GitHub Desktop.

Revisions

  1. radiovisual revised this gist Jan 2, 2017. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions quick_setup
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    npm install --save-dev babel-eslint eslint-config-airbnb-base eslint-plugin-react eslint-plugin-react-native
  2. radiovisual created this gist Jan 2, 2017.
    21 changes: 21 additions & 0 deletions .eslintrc
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,21 @@
    {
    "parser": "babel-eslint",
    "plugins": [
    "react",
    "react-native"
    ],
    "parserOptions": {
    "ecmaFeatures": {
    "jsx": true,
    "modules": true
    }
    },
    "extends" : [
    "eslint:recommended",
    "plugin:react/recommended",
    "airbnb-base"
    ],
    "rules" : {
    "arrow-body-style" : 'warn'
    }
    }