https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 876271c6602d92eff0a20b8e9a2751b51cd6f24b authored by dependabot[bot] on 09 February 2023, 05:33:44 UTC
chore(deps): bump @sideway/formula from 3.0.0 to 3.0.1 in /expo-example
Tip revision: 876271c
.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