https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 0d99fcbf6f12a88801e7af89902e871145b9100f authored by Suraj Ahmed on 02 March 2022, 09:09:40 UTC
fix: typing improvement
Tip revision: 0d99fcb
.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