From b1bdbc6789a66149d6c7710371d25e2351891305 Mon Sep 17 00:00:00 2001 From: Jaakko Paju Date: Mon, 2 Dec 2024 16:27:08 +0200 Subject: [PATCH] Fix language configuration for .conf files (#12156) --- languages.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/languages.toml b/languages.toml index df0a29cf0..4bc980340 100644 --- a/languages.toml +++ b/languages.toml @@ -3463,7 +3463,11 @@ source = { git = "https://github.com/urbit-pilled/tree-sitter-hoon", rev = "1d5d [[language]] name = "hocon" scope = "source.conf" -file-types = ["conf"] +file-types = [ + { glob = "**/src/*/resources/**/*.conf" }, + { glob = "*scalafmt*.conf" }, + { glob = "*scalafix*.conf" }, +] comment-token = "#" auto-format = true indent = { tab-width = 2, unit = " " }