https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 2af374e586034366dcefce9a0f23983836a7901f authored by Suraj Ahmed Choudhury on 22 December 2021, 12:57:38 UTC
Merge pull request #4434 from GeekyAnts/minor
Tip revision: 2af374e
.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