This is a short reminder for myself about adding ESLint support to a new create-react-app project with typescript (which is my default frontend template for now).
Instructions include setting up file watchers in VSCode and WebStorm, so all files are automatically formatted on save.
So, here we go.
yarn add @typescript-eslint/parser @typescript-eslint/eslint-plugin prettier eslint-config-prettier eslint-plugin-prettier
Extract the configs from archive into the folder of a project. This will set up watchers and default configs for both ESLint and Prettier.
Don’t forget to restart your IDE to get all the goodies.