https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 623485cb6255b521db580f79960f71d80d8583fe authored by Suraj Ahmed on 03 August 2022, 06:27:49 UTC
fix: removed state bot
Tip revision: 623485c
.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