All the configs for all the things, in one place - Prettier, Babel, ESLint, NYC, TypeScript
yarn add --dev @tunnckocore/config
Your .eslintrc.js
in your project
module.exports = require('@tunnckocore/config/eslint')(process.cwd());
Your babel.config.js
or .babelrc.js
(it depends, but they behave a bit differently) in your project
module.exports = require('@tunnckocore/config/babel')(process.cwd());
Your .prettierrc.js
in your project
module.exports = require('@tunnckocore/config/prettier');