https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 7510782de9301721f5409cd18cb023da8d41ead9 authored by Rohit Singh on 18 October 2021, 10:49:19 UTC
feat: pseudo selector prop for scrollview in modal body
Tip revision: 7510782
.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