diff options
author | Scott Stevenson | 2023-05-01 14:21:10 +0000 |
---|---|---|
committer | GitHub | 2023-05-01 14:21:10 +0000 |
commit | d7878238c1a2994f7d467f4bead6660da3f5e8e4 (patch) | |
tree | 8cee1abeb1b66c45e5715b46029907db15bef31f | |
parent | 75f62bc86f2ccf2f529d4faa45aed08adfefef78 (diff) |
Recognise poetry.lock as TOML (#6928)
-rw-r--r-- | languages.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/languages.toml b/languages.toml index 9a0a538a..e4855e90 100644 --- a/languages.toml +++ b/languages.toml @@ -78,7 +78,7 @@ source = { git = "https://github.com/FuelLabs/tree-sitter-sway", rev = "e491a005 name = "toml" scope = "source.toml" injection-regex = "toml" -file-types = ["toml"] +file-types = ["toml", "poetry.lock"] roots = [] comment-token = "#" language-server = { command = "taplo", args = ["lsp", "stdio"] } |