Skip to content

Commit

Permalink
feat: enable extension for CSS files (#222)
Browse files Browse the repository at this point in the history
Co-authored-by: Nicolas Hedger <649677+nhedger@users.noreply.github.com>
  • Loading branch information
ematipico and nhedger authored Jun 4, 2024
1 parent 6425f7d commit 2913892
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"onLanguage:jsonc",
"onLanguage:vue",
"onLanguage:astro",
"onLanguage:svelte"
"onLanguage:svelte",
"onLanguage:css"
],
"main": "./out/main.js",
"homepage": "https://github.com/biomejs/biome-vscode",
Expand Down
2 changes: 2 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ export async function activate(context: ExtensionContext) {
{ language: "vue", scheme: "untitled" },
{ language: "svelte", scheme: "file" },
{ language: "svelte", scheme: "untitled" },
{ language: "css", scheme: "file" },
{ language: "css", scheme: "untitled" },
];

const clientOptions: LanguageClientOptions = {
Expand Down

0 comments on commit 2913892

Please sign in to comment.