From 07e45591336264b3a852f0c2ad25b83120f55ccd Mon Sep 17 00:00:00 2001 From: didavila Date: Fri, 27 Mar 2026 11:29:52 +0100 Subject: [PATCH] chore: update README with new command options for skipping linting and using config files --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index c3b3012..4597502 100644 --- a/README.md +++ b/README.md @@ -99,6 +99,15 @@ generate-clean-arch -i api.yaml -t ./my-templates # Dry run (no files written) generate-clean-arch -i swagger.yaml --dry-run +# Skip linting after generation +generate-clean-arch -i swagger.yaml --skip-lint + +# Generate a config file to reuse later +generate-clean-arch --init-config generation-config.json + +# Run using a config file (no interactive prompts) +generate-clean-arch -c generation-config.json + # Full example with all options generate-clean-arch -i ./docs/api.yaml -o ./frontend/src/app -t ./custom-templates ```