From 30e7ecd7d9e788028ffbcf3e563bcf99eab28a54 Mon Sep 17 00:00:00 2001
From: clauspeterhuebner
Date: Fri, 5 Sep 2025 16:49:33 +0200
Subject: [PATCH] remove eslint command-lines
---
shared/src/jwt/payloadtypes/EncryptedJWEJwtPayloadType.ts | 2 --
.../jwt/payloadtypes/OpenConnectionCallbackJwtPayloadType.ts | 2 --
shared/src/jwt/payloadtypes/OpenConnectionJwtPayloadType.ts | 2 --
shared/src/jwt/payloadtypes/RedeemJwtPayloadType.ts | 2 --
shared/src/jwt/payloadtypes/SendCoinsJwtPayloadType.ts | 2 --
shared/src/jwt/payloadtypes/SendCoinsResponseJwtPayloadType.ts | 2 --
shared/src/jwt/payloadtypes/SignedTransferPayloadType.ts | 2 --
7 files changed, 14 deletions(-)
diff --git a/shared/src/jwt/payloadtypes/EncryptedJWEJwtPayloadType.ts b/shared/src/jwt/payloadtypes/EncryptedJWEJwtPayloadType.ts
index f353d885b..0d6d86476 100644
--- a/shared/src/jwt/payloadtypes/EncryptedJWEJwtPayloadType.ts
+++ b/shared/src/jwt/payloadtypes/EncryptedJWEJwtPayloadType.ts
@@ -9,9 +9,7 @@ export class EncryptedJWEJwtPayloadType extends JwtPayloadType {
handshakeID: string,
jwe: string,
) {
- // eslint-disable-next-line @typescript-eslint/no-unsafe-call
super(handshakeID)
- // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
this.tokentype = EncryptedJWEJwtPayloadType.ENCRYPTED_JWE_TYPE
this.jwe = jwe
}
diff --git a/shared/src/jwt/payloadtypes/OpenConnectionCallbackJwtPayloadType.ts b/shared/src/jwt/payloadtypes/OpenConnectionCallbackJwtPayloadType.ts
index 7b4992284..544e23800 100644
--- a/shared/src/jwt/payloadtypes/OpenConnectionCallbackJwtPayloadType.ts
+++ b/shared/src/jwt/payloadtypes/OpenConnectionCallbackJwtPayloadType.ts
@@ -11,9 +11,7 @@ export class OpenConnectionCallbackJwtPayloadType extends JwtPayloadType {
oneTimeCode: string,
url: string,
) {
- // eslint-disable-next-line @typescript-eslint/no-unsafe-call
super(handshakeID)
- // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
this.tokentype = OpenConnectionCallbackJwtPayloadType.OPEN_CONNECTION_CALLBACK_TYPE
this.oneTimeCode = oneTimeCode
this.url = url
diff --git a/shared/src/jwt/payloadtypes/OpenConnectionJwtPayloadType.ts b/shared/src/jwt/payloadtypes/OpenConnectionJwtPayloadType.ts
index 3a3c249cb..a9e7e0a5a 100644
--- a/shared/src/jwt/payloadtypes/OpenConnectionJwtPayloadType.ts
+++ b/shared/src/jwt/payloadtypes/OpenConnectionJwtPayloadType.ts
@@ -9,9 +9,7 @@ export class OpenConnectionJwtPayloadType extends JwtPayloadType {
handshakeID: string,
url: string,
) {
- // eslint-disable-next-line @typescript-eslint/no-unsafe-call
super(handshakeID)
- // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
this.tokentype = OpenConnectionJwtPayloadType.OPEN_CONNECTION_TYPE
this.url = url
}
diff --git a/shared/src/jwt/payloadtypes/RedeemJwtPayloadType.ts b/shared/src/jwt/payloadtypes/RedeemJwtPayloadType.ts
index faeda2b71..841f725e1 100644
--- a/shared/src/jwt/payloadtypes/RedeemJwtPayloadType.ts
+++ b/shared/src/jwt/payloadtypes/RedeemJwtPayloadType.ts
@@ -20,9 +20,7 @@ export class RedeemJwtPayloadType extends JwtPayloadType {
memo: string,
validUntil: string,
) {
- // eslint-disable-next-line @typescript-eslint/no-unsafe-call
super('handshakeID')
- // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
this.tokentype = RedeemJwtPayloadType.REDEEM_ACTIVATION_TYPE
this.sendercommunityuuid = senderCom
this.sendergradidoid = senderUser
diff --git a/shared/src/jwt/payloadtypes/SendCoinsJwtPayloadType.ts b/shared/src/jwt/payloadtypes/SendCoinsJwtPayloadType.ts
index 6048eb254..833b004fc 100644
--- a/shared/src/jwt/payloadtypes/SendCoinsJwtPayloadType.ts
+++ b/shared/src/jwt/payloadtypes/SendCoinsJwtPayloadType.ts
@@ -26,9 +26,7 @@ export class SendCoinsJwtPayloadType extends JwtPayloadType {
senderUserName: string,
senderAlias?: string | null,
) {
- // eslint-disable-next-line @typescript-eslint/no-unsafe-call
super(handshakeID)
- // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
this.tokentype = SendCoinsJwtPayloadType.SEND_COINS_TYPE
this.recipientCommunityUuid = recipientCommunityUuid
this.recipientUserIdentifier = recipientUserIdentifier
diff --git a/shared/src/jwt/payloadtypes/SendCoinsResponseJwtPayloadType.ts b/shared/src/jwt/payloadtypes/SendCoinsResponseJwtPayloadType.ts
index e76cf00eb..fb08d6a97 100644
--- a/shared/src/jwt/payloadtypes/SendCoinsResponseJwtPayloadType.ts
+++ b/shared/src/jwt/payloadtypes/SendCoinsResponseJwtPayloadType.ts
@@ -17,9 +17,7 @@ export class SendCoinsResponseJwtPayloadType extends JwtPayloadType {
recipLastName: string | null,
recipAlias: string | null,
) {
- // eslint-disable-next-line @typescript-eslint/no-unsafe-call
super(handshakeID)
- // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
this.tokentype = SendCoinsResponseJwtPayloadType.SEND_COINS_RESPONSE_TYPE
this.vote = vote
this.recipGradidoID = recipGradidoID
diff --git a/shared/src/jwt/payloadtypes/SignedTransferPayloadType.ts b/shared/src/jwt/payloadtypes/SignedTransferPayloadType.ts
index 26c4235f3..1b3f3a468 100644
--- a/shared/src/jwt/payloadtypes/SignedTransferPayloadType.ts
+++ b/shared/src/jwt/payloadtypes/SignedTransferPayloadType.ts
@@ -11,9 +11,7 @@ export class SignedTransferPayloadType extends JwtPayloadType {
jwt: string,
handshakeID: string,
) {
- // eslint-disable-next-line @typescript-eslint/no-unsafe-call
super(handshakeID)
- // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
this.tokentype = SignedTransferPayloadType.SIGNED_TRANSFER_TYPE
this.publicKey = publicKey
this.jwt = jwt