https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 940e19ec7fe4377ebf4c554db79847085185a9d8 authored by Viraj-10 on 13 July 2022, 13:32:56 UTC
fix: flickering issue of colormode ios
Tip revision: 940e19e
.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