https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: f2411f4aa704f529e74cbf58f437c94cb0ae9572 authored by Rohit Singh on 15 November 2022, 10:28:38 UTC
Merge branch 'patch' of github.com:GeekyAnts/NativeBase into patch
Tip revision: f2411f4
.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