https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: ad34c57128909971920a0f68fc39c37792ff4057 authored by Vidhi Kataria on 21 September 2021, 06:03:23 UTC
fix: design fixes
Tip revision: ad34c57
.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