https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 53bc415fd00a0574cd6b4f6dbe3b93955992a057 authored by Nishan Bende on 31 August 2021, 10:44:32 UTC
feat: em units
Tip revision: 53bc415
.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