https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: afab9200671ff9848ea5ef16c5a07d14e6f6b6dd authored by Viraj-10 on 11 April 2022, 11:42:23 UTC
Merge branch 'fix/platform-typing-3.4' of github.com:GeekyAnts/NativeBase into fix/ref-typing
Tip revision: afab920
.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