Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion editors/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -284,12 +284,20 @@
},
"activationEvents": [
"onLanguage:astro",
"onLanguage:css",
"onLanguage:handlebars",
"onLanguage:html",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:json",
"onLanguage:jsonc",
"onLanguage:markdown",
"onLanguage:svelte",
"onLanguage:toml",
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:vue"
"onLanguage:vue",
"onLanguage:yaml"
Comment on lines 285 to +300
Copy link

Copilot AI Jan 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Additional supported languages are missing from activationEvents. Consider adding the following language activation events to match oxfmt's complete language support: "onLanguage:graphql" (after css), "onLanguage:less" (after jsonc), "onLanguage:mdx" (after markdown), and "onLanguage:scss" (after svelte). All these file types are supported by oxfmt through its prettier integration.

Copilot uses AI. Check for mistakes.
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot Create new PR for it,
Create after that for each new line a new comment to me, referencing the counterpart of editors/vscode/client/tools/formatter.ts

],
"icon": "icon.png",
"engines": {
Expand Down
Loading