Unnamed repository; edit this file 'description' to name the repository.
Add buckconfig to ini language file-types (#15521)
Includes all potential buckconfig files as documented:
https://buck2.build/docs/concepts/buckconfig/#other-initialization-files
| -rw-r--r-- | languages.toml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml index 58317832..297aa454 100644 --- a/languages.toml +++ b/languages.toml @@ -3420,6 +3420,11 @@ file-types = [ "cfg", "directory", { glob = ".wslconfig" }, + { glob = ".buckconfig" }, + { glob = ".buckconfig.local" }, + { glob = ".buckconfig.d/*" }, + { glob = "/etc/buckconfig" }, + { glob = "/etc/buckconfig.d/*" }, ] injection-regex = "ini" comment-token = "#" |