https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 74b967bad8abcc986efed60015e6a458da5b3e0f authored by Viraj-10 on 06 July 2022, 17:15:07 UTC
fix: snapshot test v3.4.8
Tip revision: 74b967b
.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": "off"
  },
  "plugins": ["prettier"]
}
back to top