https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 3821293500bbaf9f7018a593c90f7b032a2f283e authored by Amar Somani on 03 May 2021, 13:05:21 UTC
installation updated
Tip revision: 3821293
.eslintrc.json
{
  "extends": ["airbnb", "prettier"],
  "parser": "babel-eslint",
  "rules": {
    "indent": ["error", 2, { "SwitchCase": 1 }],
    "react/require-extension": "off",
    "no-undef": "off",
    "import/order": "off",
    "func-names": "off",
    "import/prefer-default-export": "off",
    "no-console": ["error", { "allow": ["warn", "error"] }],
    "no-prototype-builtins": "off",
    "no-nested-ternary": "off",
    "no-underscore-dangle": "off",
    "no-unused-expressions": "off",
    "react/jsx-filename-extension": "off",
    "react/no-did-update-set-state": "off",
    "react/no-multi-comp": "off",
    "react/prop-types": "off"
  },
  "plugins": ["react", "jsx-a11y", "import", "react-native"]
}
back to top