https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 53d5e213d6e04a5a78baea729082682701b84477 authored by mayank-96 on 11 March 2022, 09:17:40 UTC
fix: replaced unstyledSelecWebtStyles with _webSelect
Tip revision: 53d5e21
.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