https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 3f1b7df59067afdbabe77edfc6f7101a7526be46 authored by Rohit Singh on 21 January 2022, 06:29:45 UTC
Merge branch 'patch' of github.com:GeekyAnts/NativeBase into feat/nextjs-docs-examples
Tip revision: 3f1b7df
.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": "off"
  },
  "plugins": ["prettier"]
}
back to top