https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 637fc0b0c2a02bcfb6546d4f33b1b6f7b39bd0fe authored by Viraj-10 on 16 June 2022, 12:56:29 UTC
fix: flexbox properties for native devices
Tip revision: 637fc0b
.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