mirror of https://github.com/databricks/cli.git
20 lines
931 B
JSON
20 lines
931 B
JSON
{
|
|
"formatter": "go run golang.org/x/tools/cmd/goimports@latest -w $FILENAMES && go fmt ./...",
|
|
"services": {
|
|
".codegen/service.go.tmpl": "cmd/{{if .IsAccounts}}account{{else}}workspace{{end}}/{{(.TrimPrefix \"account\").KebabName}}/{{(.TrimPrefix \"account\").KebabName}}.go"
|
|
},
|
|
"batch": {
|
|
".codegen/cmds-workspace.go.tmpl": "cmd/workspace/cmd.go",
|
|
".codegen/cmds-account.go.tmpl": "cmd/account/cmd.go"
|
|
},
|
|
"toolchain": {
|
|
"required": ["go"],
|
|
"post_generate": [
|
|
"go run ./bundle/internal/bundle/schema/main.go ./bundle/schema/docs/bundle_descriptions.json",
|
|
"echo 'bundle/internal/tf/schema/\\*.go linguist-generated=true' >> ./.gitattributes",
|
|
"echo 'go.sum linguist-generated=true' >> ./.gitattributes",
|
|
"echo 'bundle/schema/docs/bundle_descriptions.json linguist-generated=true' >> ./.gitattributes"
|
|
]
|
|
}
|
|
}
|