Skip to content
Merged
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion packages/language-tools/vscode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ A TypeScript plugin adding support for importing and exporting Astro components

## Configuration

HTML, CSS and TypeScript settings can be configured through the `html`, `css` and `typescript` namespaces respectively. For example, HTML documentation on hover can be disabled using `'html.hover.documentation': false`. Formatting can be configured through [Prettier's different configuration methods](https://prettier.io/docs/en/configuration.html).
HTML and CSS settings can be configured through the `html` and `css` namespaces. TypeScript settings are available under `js/ts` in recent VS Code versions, and under `typescript` in older versions. For example, HTML documentation on hover can be disabled using `'html.hover.documentation': false`. Formatting can be configured through [Prettier's different configuration methods](https://prettier.io/docs/en/configuration.html).
Comment thread
matthewp marked this conversation as resolved.
Outdated

Copilot AI Mar 31, 2026

Copy link

Choose a reason for hiding this comment

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

“Recent VS Code versions” / “older versions” is ambiguous and will become outdated. If possible, specify the VS Code version(s) where this changed (or link to the relevant VS Code documentation / release note), so users can reliably map their editor version to the expected settings location.

Suggested change
HTML and CSS settings can be configured through the `html` and `css` namespaces. TypeScript settings are available under `js/ts` in recent VS Code versions, and under `typescript` in older versions. For example, HTML documentation on hover can be disabled using `'html.hover.documentation': false`. Formatting can be configured through [Prettier's different configuration methods](https://prettier.io/docs/en/configuration.html).
HTML and CSS settings can be configured through the `html` and `css` namespaces. TypeScript settings are available under either the `js/ts` or `typescript` namespaces, depending on your VS Code version. For example, HTML documentation on hover can be disabled using `'html.hover.documentation': false`. Formatting can be configured through [Prettier's different configuration methods](https://prettier.io/docs/en/configuration.html).

Copilot uses AI. Check for mistakes.

## Troubleshooting

Expand Down
Loading