https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 029bf74e043b5cb4c5ceaf699dc165d3afa1e77e authored by dependabot[bot] on 27 January 2023, 14:12:32 UTC
chore(deps): bump ua-parser-js from 0.7.31 to 0.7.33 in /expo-example
Tip revision: 029bf74
.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