https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 76cdc02d3f2599ec9a4be621eaddf4604c8888c9 authored by Rohit Singh on 25 October 2021, 07:53:02 UTC
Merge branch 'minor' of github.com:GeekyAnts/NativeBase into fix/example-bugs
Tip revision: 76cdc02
.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