https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 0dec5623cea0651fc8b384bc4eb16020afc1316f authored by Suraj Ahmed on 22 December 2021, 05:26:27 UTC
fix: radio ref fixes
Tip revision: 0dec562
.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