https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 729b4498a25bc31bbec553ce979367673b91e4a7 authored by Suraj Ahmed on 09 February 2022, 10:02:48 UTC
fix: overlay issue fixes
Tip revision: 729b449
.eslintrc.json
{
  "extends": ["@react-native-community", "prettier"],
  "rules": {
    "prettier/prettier": [
      "error",
      {
        "quoteProps": "preserve",
        "singleQuote": true,
        "tabWidth": 2,
        "trailingComma": "es5",
        "useTabs": false
      }
    ],
    "no-bitwise": 0,
    "prefer-const": "warn",
    "no-console": ["error", { "allow": ["warn", "error"] }]
  },
  "plugins": ["prettier"]
}
back to top