style: replace em dashes with hyphens throughout codebase

Replace all — with - in all source files (JS, CSS, HTML, JSON,
Markdown) for consistency and readability.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Ulas
2026-04-03 17:04:39 +02:00
parent 6046cac7a8
commit 1122bd269b
56 changed files with 256 additions and 256 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
/**
* Modul: Datenbank-Test
* Zweck: Schema-Migration mit node:sqlite (built-in) validieren.
* Kein Kompilieren nötig läuft direkt mit Node 22+.
* Kein Kompilieren nötig - läuft direkt mit Node 22+.
* Testet SQL-Korrektheit, FK-Reihenfolge, Triggers, Indizes.
*
* Ausführen: node test-db.js
@@ -13,7 +13,7 @@ const { DatabaseSync } = require('node:sqlite');
// --------------------------------------------------------
// Migrations-SQL direkt aus db.js extrahieren
// (Nur für Tests in Produktion läuft db.js mit better-sqlite3)
// (Nur für Tests - in Produktion läuft db.js mit better-sqlite3)
// --------------------------------------------------------
const { MIGRATIONS_SQL } = require('./server/db-schema-test');