feat(languages): add podman *.conf files to toml file-types (#14443)

This commit is contained in:
Kristoffer Plagborg Bak Sørensen
2025-09-14 01:13:10 +02:00
committed by GitHub
parent c531b7a4fa
commit c614467be8

View File

@@ -358,7 +358,20 @@ source = { git = "https://github.com/FuelLabs/tree-sitter-sway", rev = "e491a005
name = "toml"
scope = "source.toml"
injection-regex = "toml"
file-types = ["toml", { glob = "pdm.lock" }, { glob = "poetry.lock" }, { glob = "Cargo.lock" }, { glob = "uv.lock" }]
file-types = [
"toml",
{ glob = "pdm.lock" },
{ glob = "poetry.lock" },
{ glob = "Cargo.lock" },
{ glob = "uv.lock" },
{ glob = "containers.conf" },
{ glob = "containers.conf.d/*.conf" },
{ glob = "containers.conf.modules/*.conf" },
{ glob = "mounts.conf" },
{ glob = "policy.conf" },
{ glob = "registries.conf" },
{ glob = "storage.conf" },
]
comment-token = "#"
language-servers = [ "taplo", "tombi" ]
indent = { tab-width = 2, unit = " " }