https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 48d4f2dc22ca8585c9636782c4190981792dbed7 authored by Rohit Singh on 10 March 2022, 12:16:41 UTC
chore: update _text destructure remover
Tip revision: 48d4f2d
.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