https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: debe47108b1ee215ccc4fd22c5c125580a491485 authored by dependabot[bot] on 06 March 2023, 07:28:25 UTC
chore(deps): bump @sideway/formula from 3.0.0 to 3.0.1 in /RNBareExample
Tip revision: debe471
.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