https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 2f9ba9c616bc69c38714e770c9a36eb8dfe756f5 authored by Suraj Ahmed on 04 August 2022, 06:24:12 UTC
v3.4.11
Tip revision: 2f9ba9c
.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