https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: bb945bb53fbcb9182cdd2c08da402ce1f8c6c781 authored by meenu on 13 October 2021, 17:00:38 UTC
fix: fixed textareaalignment on android devices
Tip revision: bb945bb
.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": "off"
  },
  "plugins": ["prettier"]
}
back to top