Revision 830c5b9b518c10df3e92f883b30cd7836d1eea51 authored by Aditya Jamuar on 28 September 2021, 11:45:33 UTC, committed by Aditya Jamuar on 28 September 2021, 11:45:33 UTC
1 parent 7f2a1a8
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