https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: b9f7e9140fabf44f68e13f28927ba998230d2ab2 authored by ankit-tailor on 18 November 2022, 13:12:55 UTC
v3.4.23-rc.0
Tip revision: b9f7e91
.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": "off"
  },
  "plugins": ["prettier"]
}
back to top