]> Piment Noir Git Repositories - e-mobility-charging-stations-simulator.git/commitdiff
fix: syntax error
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 24 Nov 2025 11:20:36 +0000 (12:20 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 24 Nov 2025 11:20:36 +0000 (12:20 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
.serena/memories/task_completion_checklist.md
eslint.config.js
ui/web/src/types/UUID.ts

index 3e428dd52a9328d862cc8fda28b18f494e920ade..8dda9b9a935992d5f8f7fdb9445473fe7561ca13 100644 (file)
 ### 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)
 
index cd9d52e279645f922acb021a34a8597065218a2f..a45bee2548f6c9b50f444996c8f69703d74acff1 100644 (file)
@@ -52,6 +52,7 @@ export default defineConfig([
               'shutdowning',
               'VCAP',
               'workerd',
+              'yxxx',
               // OCPP 2.0.x domain terms
               'cppwm',
               'heartbeatinterval',
index 738599987043d3b4b3583288a8d630c683a9a166..bb2a5d871f739022b4939ea04bdabe85b65d326b 100644 (file)
@@ -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}`