https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: b1b16a83a1c076c44777862767f8316c90c741eb authored by Rohit Singh on 15 November 2022, 14:50:53 UTC
v3.4.22
Tip revision: b1b16a8
.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