style: fix linting order and formatting

This commit is contained in:
Peter Steinberger
2026-01-05 02:33:59 +01:00
parent a1acd7dae8
commit d92a9e351e
2 changed files with 5 additions and 2 deletions

View File

@@ -13,7 +13,10 @@ type QRCodeConstructor = new (
};
const QRCode = QRCodeModule as unknown as QRCodeConstructor;
const QRErrorCorrectLevel = QRErrorCorrectLevelModule as Record<string, unknown>;
const QRErrorCorrectLevel = QRErrorCorrectLevelModule as Record<
string,
unknown
>;
function createQrMatrix(input: string) {
const qr = new QRCode(-1, QRErrorCorrectLevel.L);