From 90b3f971bd5b8587deccabb2e5f6ad8111959bb4 Mon Sep 17 00:00:00 2001 From: Pataesci Bufran <56449288+JasonLeung1983@users.noreply.github.com> Date: Sat, 22 Nov 2025 00:33:53 +0300 Subject: [PATCH] Remove non-standard 'spaces' field from config Removed the 'spaces' field to reduce configuration noise. --- openapitools.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/openapitools.json b/openapitools.json index 6c5ef2c..97ad8bd 100644 --- a/openapitools.json +++ b/openapitools.json @@ -1,7 +1,12 @@ { + // $schema defines the path to the JSON schema for validation and IDE auto-completion. "$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json", - "spaces": 2, + "generator-cli": { + // Specifies the exact version of the OpenAPI Generator CLI to use. + // Pinning the version ensures deterministic builds across different environments. "version": "7.3.0" } + // OPTIMIZATION: Removed the "spaces" field as it is non-standard for OpenAPI Generator CLI + // and contributes unnecessary configuration noise unless specifically required by another tool. }