https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: c0c1acaf5ff86f11cc7b6d5539f6e725fa4bf1a4 authored by ankitt on 04 January 2022, 10:26:22 UTC
fix: add key prop
Tip revision: c0c1aca
.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