https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 3d3608b7fec377f00b63db3216f85da1345fc5e9 authored by Rohit Singh on 17 October 2022, 07:05:52 UTC
v3.5.0-rc.5
Tip revision: 3d3608b
.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