https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 01301e2764815d50c6524c01ecc1ef6139d75bf3 authored by amars29 on 22 February 2022, 06:09:30 UTC
fix: removing exact versions from peer deps
Tip revision: 01301e2
.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