replacements.json 987 B

1234567891011121314151617181920212223242526
  1. {
  2. "rules": {
  3. "generator-star": ["generator-star-spacing"],
  4. "global-strict": ["strict"],
  5. "no-arrow-condition": ["no-confusing-arrow", "no-constant-condition"],
  6. "no-comma-dangle": ["comma-dangle"],
  7. "no-empty-class": ["no-empty-character-class"],
  8. "no-empty-label": ["no-labels"],
  9. "no-extra-strict": ["strict"],
  10. "no-reserved-keys": ["quote-props"],
  11. "no-space-before-semi": ["semi-spacing"],
  12. "no-wrap-func": ["no-extra-parens"],
  13. "space-after-function-name": ["space-before-function-paren"],
  14. "space-after-keywords": ["keyword-spacing"],
  15. "space-before-function-parentheses": ["space-before-function-paren"],
  16. "space-before-keywords": ["keyword-spacing"],
  17. "space-in-brackets": [
  18. "object-curly-spacing",
  19. "array-bracket-spacing",
  20. "computed-property-spacing"
  21. ],
  22. "space-return-throw-case": ["keyword-spacing"],
  23. "space-unary-word-ops": ["space-unary-ops"],
  24. "spaced-line-comment": ["spaced-comment"]
  25. }
  26. }