https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: d434386144ce63bb313c5208ee308886928f1444 authored by amars29 on 03 August 2022, 12:21:35 UTC
feat: simplegrid flex-1
Tip revision: d434386
.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