https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: d3caf68d9c72639c122d9ec159ec87b59717260d authored by Vidhi Kataria on 20 September 2021, 17:43:09 UTC
fix: design fixes
Tip revision: d3caf68
.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