https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: ebc40a43e3e6c605ecd170077534a9e4b00f9fc5 authored by Nishan Bende on 16 September 2021, 09:13:46 UTC
fix: resolve negative margins in string tokens
Tip revision: ebc40a4
.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