Revision cb925a5ac11d52f3d1fec2cd175aff4a1f595346 authored by Ruchika Sharma on 23 September 2022, 11:09:29 UTC, committed by Ruchika Sharma on 23 September 2022, 11:09:29 UTC
1 parent 7831214
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": "off"
  },
  "plugins": ["prettier"]
}
back to top