mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-06-09 22:05:16 +02:00
30e9bf8a75
This makes it possible to use recursive structures in the user config.
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)
|
|
}
|