Is your proposal related to a problem?
When creating a new project with React CRA, each time you create a project you have to individually install dependencies for eslint/tslint which results in having to waste time repeating the same process of installing the dependencies.
Describe the solution you'd like
I would like to propose an out-of-the-box solution or some predefined commands, which when you create your application it installs the required dependencies for eslint/tslint depending on if you choose javascript or typescript or simply singular one for both in the config.
Additional context
A good example of this would be the team that created NestJS, when you do nest new "project name", it installs: -
.eslint.js
.prettierrc
which then allows you to customize them out of the box.
Is your proposal related to a problem?
When creating a new project with React CRA, each time you create a project you have to individually install dependencies for eslint/tslint which results in having to waste time repeating the same process of installing the dependencies.
Describe the solution you'd like
I would like to propose an out-of-the-box solution or some predefined commands, which when you create your application it installs the required dependencies for eslint/tslint depending on if you choose javascript or typescript or simply singular one for both in the config.
Additional context
A good example of this would be the team that created NestJS, when you do nest new "project name", it installs: -
.eslint.js
.prettierrc
which then allows you to customize them out of the box.