https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: e9af95d2e2f64d02c2e90ba7905a5712116093ea authored by Aditya Jamuar on 04 April 2021, 06:57:00 UTC
fix: example fixes
Tip revision: e9af95d
.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