mirror of
				https://github.com/sharkdp/bat.git
				synced 2025-11-04 09:01:56 +00:00 
			
		
		
		
	Associate *.sarif files with json syntax (#2695)
				
					
				
			* Associate `*.sarif` files with `json` syntax * Update changelog for #2695
This commit is contained in:
		@@ -21,6 +21,7 @@
 | 
			
		||||
- Associate `Containerfile` with `Dockerfile` syntax, see #2606 (@einfachIrgendwer0815)
 | 
			
		||||
- Replaced quotes with double quotes so fzf integration example script works on windows and linux. see #2095 (@johnmatthiggins)
 | 
			
		||||
- Associate `ksh` files with `bash` syntax, see #2633 (@johnmatthiggins)
 | 
			
		||||
- Associate `sarif` files with `JSON` syntax, see #2695 (@rhysd)
 | 
			
		||||
- Associate `ron` files with `rust` syntax, see #2427 (@YeungOnion)
 | 
			
		||||
- Add support for [WebGPU Shader Language](https://www.w3.org/TR/WGSL/), see #2692 (@rhysd)
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -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
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user