https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 54a6e7c289a6d0bf254c5d4a7c225f079d7d7df2 authored by ankit-tailor on 11 March 2022, 06:56:29 UTC
fix: error message overlap
Tip revision: 54a6e7c
.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