https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 544e4f3ecec5720e4e2e9787949e0afe555ef578 authored by Suraj Ahmed on 19 April 2022, 11:27:43 UTC
fix: modal overlay issue fixes
Tip revision: 544e4f3
.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