https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 9fa5f6ba093f8b026e84f838f2dc9ef20e45155e authored by Rohit Singh on 27 February 2023, 06:31:12 UTC
v3.4.26-rc.3
Tip revision: 9fa5f6b
.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