"Please also document which..." <- I'm using VScode. before the patch there's an error because the file in the command doesn't exist yet. After the patch it has some warning but no error. before: kohadev-koha@kohadevbox:koha(master)$ npx prettier -c .prettierrc.js ./koha -tmpl/intranet-tmpl/prog/js/vue/components/Breadcrumbs.vue Checking formatting... [error] No files matching the pattern were found: ".prettierrc.js". [warn] koha-tmpl/intranet-tmpl/prog/js/vue/components/Breadcrumbs.vue [warn] Code style issues found in the above file. Forgot to run Prettier? npm notice npm notice New minor version of npm available! 10.2.4 -> 10.5.0 npm notice Changelog: https://github.com/npm/cli/releases/tag/v10.5.0 npm notice Run npm install -g npm@10.5.0 to update! npm notice after: ``` kohadev-koha@kohadevbox:koha(master)$ npx prettier -c .prettierrc.js ./koha-tmpl/intranet-tmpl/prog/js/vue/components/Breadcrumbs.vue Checking formatting... [warn] Ignored unknown option { editorconfig: "false" }. [warn] .prettierrc.js [warn] Ignored unknown option { editorconfig: "false" }. [warn] Code style issues found in the above file. Forgot to run Prettier? ``` did I test correctly? I can keep testing more files if the process if correct