https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 4fe25268e537ed6773f40f04d33db2f7b5812593 authored by Nishan Bende on 06 October 2021, 04:43:37 UTC
feat: media query
Tip revision: 4fe2526
.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