sj-freitas/forofa

View on GitHub
.eslintrc.json

Summary

Maintainability
Test Coverage
{
  "extends": ["airbnb-base", "prettier"],
  "plugins": ["prettier", "jest"],
  "rules": {
    "prettier/prettier": "error",
    "no-restricted-syntax": [
      "error",
      "WithStatement",
      "BinaryExpression[operator='in']"
    ],
    "no-plusplus": "off"
  },
  "env": {
    "jest/globals": true
  }
}