From faa7180536e027526e0624247f8a2f8284903dff Mon Sep 17 00:00:00 2001 From: Chaim Lev-Ari Date: Tue, 2 Jan 2024 13:30:02 +0700 Subject: [PATCH] docs(api): default to pascal case for property name [EE-6471] (#10860) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cdb0952a7..690d658aa 100644 --- a/Makefile +++ b/Makefile @@ -114,7 +114,7 @@ dev-extension: build-server build-client ## Run the extension in development mod ##@ Docs .PHONY: docs-build docs-validate docs-clean docs-validate-clean docs-build: init-dist ## Build docs - cd api && $(SWAG) init -o "../dist/docs" -ot "yaml" -g ./http/handler/handler.go --parseDependency --parseInternal --parseDepth 2 --markdownFiles ./ + cd api && $(SWAG) init -o "../dist/docs" -ot "yaml" -g ./http/handler/handler.go --parseDependency --parseInternal --parseDepth 2 -p pascalcase --markdownFiles ./ docs-validate: docs-build ## Validate docs yarn swagger2openapi --warnOnly dist/docs/swagger.yaml -o dist/docs/openapi.yaml