https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: a3666a2629b4d85cb98cc7dedf2fa2c5fbeddc39 authored by ankit-tailor on 20 September 2022, 12:13:29 UTC
fix: link text underline
Tip revision: a3666a2
.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