https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: a2cd206c532ee2235324f8c989d67c5d77a1d3c7 authored by Plaban J Rajkhowa on 31 July 2019, 14:14:33 UTC
Fix #2831
Tip revision: a2cd206
.eslintrc.json
{
  "extends": ["airbnb", "prettier"],
  "parser": "babel-eslint",
  "rules": {
    "indent": ["error", 2],
    "react/require-extension": "off",
    "import/order": ["error", { "newlines-between": "always" }],
    "func-names": "off",
    "import/prefer-default-export": "off",
    "no-prototype-builtins": "off",
    "no-nested-ternary": "warn",
    "no-underscore-dangle": "off",
    "no-unused-expressions": "off",
    "react/jsx-filename-extension": "off",
    "react/no-did-update-set-state": "off",
    "react/prop-types": "off"
  },
  "plugins": ["react", "jsx-a11y", "import", "react-native"]
}
back to top