https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: cc2f704296dab8e1e0c88d21171d8695ccb25704 authored by Suraj Ahmed on 19 July 2022, 10:04:50 UTC
v3.5.0-alpha.6
Tip revision: cc2f704
.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