https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 8664182579e46d5c75096e470e7f21724d05b24f authored by Amar Somani on 05 May 2021, 05:12:39 UTC
remove img width
Tip revision: 8664182
.eslintrc.json
{
  "extends": ["@react-native-community", "prettier"],
  "rules": {
    "prettier/prettier": [
      "error",
      {
        "quoteProps": "preserve",
        "singleQuote": true,
        "tabWidth": 2,
        "trailingComma": "es5",
        "useTabs": false
      }
    ],
    "no-bitwise": 0
  },
  "plugins": ["prettier"]
}
back to top