diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2024-09-02 18:27:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-02 18:27:25 +0100 |
commit | e804175a0ad850f09086b70368042ac50cee116e (patch) | |
tree | f4f4f89d9c9dceef9244363224ca5deacd293a60 /tests/util/server/src/lsp.rs | |
parent | 9e6f41df664036ca723c2657e11234258e5a6fcb (diff) |
feat(lsp): html/css/yaml file formatting (#25353)
Diffstat (limited to 'tests/util/server/src/lsp.rs')
-rw-r--r-- | tests/util/server/src/lsp.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/util/server/src/lsp.rs b/tests/util/server/src/lsp.rs index 1c70978b6..ffe72b88a 100644 --- a/tests/util/server/src/lsp.rs +++ b/tests/util/server/src/lsp.rs @@ -1307,6 +1307,9 @@ impl SourceFile { "tsx" => "typescriptreact", "json" => "json", "md" => "markdown", + "html" => "html", + "css" => "css", + "yaml" => "yaml", other => panic!("unsupported file extension: {other}"), }; Self { |