https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 7c94a70465277456e134ab4ad297df43f797ba9c authored by mayank-96 on 01 March 2022, 07:39:46 UTC
fix: isloading pointer issue
Tip revision: 7c94a70
.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