DEV Community

Discussion on: 10 Ways to Speed Up React Development

Collapse
 
eecolor profile image
EECOLOR

If you are using ESLint, it can become tricky to keep it in sync with Prettier. We abandoned Prettier in favor of 'autofix on save' in VSCode. This gives us:

  • the freedom to define other rules than Prettier
  • one set of rules instead of 2
  • most of the benefits of Prettier
Collapse
 
sewinter profile image
Sam Winter

I haven’t tried that yet but will check it out. Thank you for suggesting!