https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 1abbfa78d3247473f2347658da7bc145393e0160 authored by Nishan on 14 July 2021, 10:23:24 UTC
Create pull_request_template.md
Tip revision: 1abbfa7
.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