https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 5f688653d8e398aa7239fc5a539765bba785b236 authored by ankit-tailor on 15 September 2022, 10:54:44 UTC
fix: rename file
Tip revision: 5f68865
.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