Minimal reproduction for oxfmt VS Code extension ignoring oxc.fmt.configPath in a multi-root workspace.
cd project-a && npm installOpening repro.code-workspace and formatting project-a/src/example.test.ts should produce single quotes and no semicolons (per .oxfmtrc.jsonc).
The formatter uses default settings (double quotes, semicolons), ignoring the config file.
cd project-a && npx oxfmt --check src/example.test.ts
# Reports formatting issues (double quotes → single quotes expected)
cd project-a && npx oxfmt --write src/example.test.ts
# Correctly applies single quotes and removes semicolons