https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 7ec0dda86990ef7a11cada0f377d3308351f4362 authored by ankit-tailor on 29 July 2022, 10:19:49 UTC
fix: resolve component tokenized value
Tip revision: 7ec0dda
.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