https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 20ce9dca03dff5830442aa6211d04210101a3c39 authored by Suraj Ahmed on 21 September 2021, 06:27:13 UTC
fix: conflict resolved
Tip revision: 20ce9dc
.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