From 5e45fe299ac51da38b624cac08efe636f37ba0be Mon Sep 17 00:00:00 2001 From: czlonkowski <56956555+czlonkowski@users.noreply.github.com> Date: Thu, 25 Sep 2025 10:02:45 +0200 Subject: [PATCH] fix: add suggestion property to ValidationError interface MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add optional suggestion property to ValidationError type - Fixes TypeScript errors in enhanced-config-validator-integration tests - All lint and typecheck tests now pass 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- src/services/config-validator.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/services/config-validator.ts b/src/services/config-validator.ts index 96ab47a..c8aa5d9 100644 --- a/src/services/config-validator.ts +++ b/src/services/config-validator.ts @@ -19,7 +19,9 @@ export interface ValidationError { type: 'missing_required' | 'invalid_type' | 'invalid_value' | 'incompatible' | 'invalid_configuration' | 'syntax_error'; property: string; message: string; - fix?: string;} + fix?: string; + suggestion?: string; +} export interface ValidationWarning { type: 'missing_common' | 'deprecated' | 'inefficient' | 'security' | 'best_practice' | 'invalid_value';