https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 5d888e0cd5601db49e6544a99a3c7f52d5a85ab2 authored by Suraj Ahmed on 05 September 2022, 06:30:04 UTC
fix: added new palette for theming
Tip revision: 5d888e0
.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