https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 0ef6fdd246bf295daef3305526096a8834f32b04 authored by MD-REHMAN on 20 December 2021, 14:18:40 UTC
fix: buttons reacting on _focusVisible prop
Tip revision: 0ef6fdd
.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