From: Jérôme Benoit Date: Mon, 24 Nov 2025 11:20:36 +0000 (+0100) Subject: fix: syntax error X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=37b5ec4f3cc83a58d7e756882cdf32c4b734d8dc;p=e-mobility-charging-stations-simulator.git fix: syntax error Signed-off-by: Jérôme Benoit --- diff --git a/.serena/memories/task_completion_checklist.md b/.serena/memories/task_completion_checklist.md index 3e428dd5..8dda9b9a 100644 --- a/.serena/memories/task_completion_checklist.md +++ b/.serena/memories/task_completion_checklist.md @@ -12,9 +12,10 @@ ### Progress Summary ✅ **COMPLETED**: + - Phase 1.1: Strategic Decision (ADR created) - Phase 1.2: TransactionEvent Authorization Flow -- Phase 1.3: OCPP20VariableManager Integration +- Phase 1.3: OCPP20VariableManager Integration - Phase 2.1: Remove useUnifiedAuth flag & legacy code 🔄 **IN PROGRESS**: Phase 2.2-2.3 (Testing & Security) @@ -42,7 +43,7 @@ ### Quick Reference -- Phase 1 (Sprints 1-2): ✅ Corrections Critiques (17.5j) +- Phase 1 (Sprints 1-2): ✅ Corrections Critiques (17.5j) - Phase 2 (Sprints 3-4): 🔄 Consolidation (27j) - 2.1 done, 2.2-2.3 todo - Phase 3 (Sprints 5-6): ⏳ Documentation (21.5j) diff --git a/eslint.config.js b/eslint.config.js index cd9d52e2..a45bee25 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -52,6 +52,7 @@ export default defineConfig([ 'shutdowning', 'VCAP', 'workerd', + 'yxxx', // OCPP 2.0.x domain terms 'cppwm', 'heartbeatinterval', diff --git a/ui/web/src/types/UUID.ts b/ui/web/src/types/UUID.ts index 73859998..bb2a5d87 100644 --- a/ui/web/src/types/UUID.ts +++ b/ui/web/src/types/UUID.ts @@ -1,6 +1,6 @@ /** * UUIDv4 type representing a standard UUID format - * Pattern: xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx /* cspell:disable-line */ + * Pattern: xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx * where x is any hexadecimal digit and y is one of 8, 9, A, or B */ export type UUIDv4 = `${string}-${string}-${string}-${string}-${string}`