https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 4d07be116b2dc11e55a471133e6ca8907d6b9a99 authored by Viraj-10 on 15 July 2022, 11:37:14 UTC
fix: making toast keyboradinset optional with avoidakeyboard prop
Tip revision: 4d07be1
.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