Revision 92795515243dd106caa4170912232b1df941c7dc authored by ankit-tailor on 02 August 2022, 06:01:57 UTC, committed by ankit-tailor on 02 August 2022, 06:01:57 UTC
1 parent d316fb0
Raw File
.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