https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 1f9a084e58a408d3652fc8824bd14ca8352b0a78 authored by ankit-tailor on 31 March 2022, 07:23:51 UTC
fix: actionsheet content bg
Tip revision: 1f9a084
.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