https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: cc4cb3eccf3c0794103f153978d045033590c594 authored by Aditya Jamuar on 14 October 2021, 13:26:27 UTC
v3.2.2-rc.1
Tip revision: cc4cb3e
.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