https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: f404ef798dc3e8683650ba3c795c81155153b620 authored by ankit-tailor on 31 October 2022, 10:59:27 UTC
fix: color mode button
Tip revision: f404ef7
.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