https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: ff286a268b558d7ac8b61b65ce7fc4bb5ab03896 authored by Rohit Singh on 22 March 2022, 13:30:31 UTC
Merge branch 'feat/v3.4-design-updates' into fix/icon-pack
Tip revision: ff286a2
.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