https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: c56d254d3732b20fb0e506f293090208b50c236e authored by Rohit Singh on 13 July 2022, 15:07:04 UTC
feat: extend theme map update
Tip revision: c56d254
.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