https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 1c20eb8a5785b8dd75a861736d7b55d48b65d9ef authored by Viraj-10 on 18 October 2022, 14:34:55 UTC
fix: adding style insert removing rnw and adding them to repo
Tip revision: 1c20eb8
.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