1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-02 11:22:30 +01:00

Associate *.sarif files with json syntax (#2695)

* Associate `*.sarif` files with `json` syntax

* Update changelog for #2695
This commit is contained in:
Linda_pp
2023-10-04 16:34:40 +09:00
committed by GitHub
parent 721f956c1c
commit 9f795dd947
2 changed files with 4 additions and 3 deletions

View File

@@ -76,9 +76,9 @@ impl<'a> SyntaxMapping<'a> {
.insert("fish_history", MappingTarget::MapTo("YAML"))
.unwrap();
mapping
.insert("*.jsonl", MappingTarget::MapTo("JSON"))
.unwrap();
for glob in ["*.jsonl", "*.sarif"] {
mapping.insert(glob, MappingTarget::MapTo("JSON")).unwrap();
}
// See #2151, https://nmap.org/book/nse-language.html
mapping