https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 022c5c08f97c422850ffcc155e2ed402f0f9688e authored by Suraj Ahmed on 20 October 2022, 12:50:03 UTC
fix: textarea size issue
Tip revision: 022c5c0
.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