https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 915e723f7da1b787690367397d5fb7e770075a88 authored by amars29 on 31 January 2022, 11:59:22 UTC
fix: color of input in factory example
Tip revision: 915e723
.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