mirror of
				https://github.com/jesseduffield/lazygit.git
				synced 2025-11-04 12:31:43 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			273 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			273 B
		
	
	
	
		
			Go
		
	
	
	
	
	
//go:build ignore
 | 
						|
 | 
						|
package main
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
 | 
						|
	"github.com/jesseduffield/lazygit/pkg/jsonschema"
 | 
						|
)
 | 
						|
 | 
						|
func main() {
 | 
						|
	fmt.Printf("Generating jsonschema in %s...\n", jsonschema.GetSchemaDir())
 | 
						|
	schema := jsonschema.GenerateSchema()
 | 
						|
	jsonschema.GenerateConfigDocs(schema)
 | 
						|
}
 |