My initial thinking on this is that we won't have any configuration for the cli, but fully depend on the respective linter's config files.
npm i -D @linterjs/cli @linterjs/prettier @linterjs/eslint
In this case I would be required to have a .eslintrc file in my project, otherwise linter would fail because eslint actually expects a config file to be present, prettier would still run as it has defaults. However if you wanted to configure prettier you would do so with it's configuration files.
My initial thinking on this is that we won't have any configuration for the cli, but fully depend on the respective linter's config files.
In this case I would be required to have a
.eslintrcfile in my project, otherwiselinterwould fail becauseeslintactually expects a config file to be present,prettierwould still run as it has defaults. However if you wanted to configureprettieryou would do so with it's configuration files.