https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 808cc5a73a621844131ec891c0baec6cd68f28b6 authored by Suraj Ahmed on 04 October 2021, 10:31:26 UTC
v3.2.1-rc.2
Tip revision: 808cc5a
.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