Revision 1fe8989fe9714ad23076b13dff6317778c8f5265 authored by Suraj Ahmed C on 20 September 2021, 11:13:55 UTC, committed by GitHub on 20 September 2021, 11:13:55 UTC
2 parent s 69625e4 + dd163d3
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