https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: e2c684d9a112d1771d26032506ce92b81ede9eeb authored by Nishan Bende on 20 September 2021, 13:39:06 UTC
fix: select crash
Tip revision: e2c684d
.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": "off"
  },
  "plugins": ["prettier"]
}
back to top