https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 62a7650bc934efb799a31e0a9c7e08a94e11a082 authored by ankit-tailor on 21 September 2022, 08:02:37 UTC
fix: refactor code
Tip revision: 62a7650
.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": "off"
  },
  "plugins": ["prettier"]
}
back to top