https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 397ae4cc7cce899bbbdc6fabe87e56bb6952261b authored by ankit-tailor on 15 March 2022, 14:20:17 UTC
fix: design changes
Tip revision: 397ae4c
.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