https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 175c74a9fc31e5b0354336da2bb59334fe5d949d authored by Nishan Bende on 08 November 2021, 10:52:04 UTC
fix: onchange not triggering in menu option group
Tip revision: 175c74a
.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