Revision f0c5ade8e569e72735edf9865e253a25a2cebc81 authored by Aditya Jamuar on 18 September 2021, 11:49:42 UTC, committed by Aditya Jamuar on 18 September 2021, 11:49:42 UTC
1 parent 9528c74
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