https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: dbfc5e754e87893827fc952afa7d501c58c93d98 authored by dependabot[bot] on 21 July 2022, 19:49:16 UTC
build(deps): bump terser from 4.8.0 to 4.8.1 in /next-example
Tip revision: dbfc5e7
.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