Skip to content

Commit 236d959

Browse files
committed
Fix linting
1 parent 6166b2e commit 236d959

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

src/cryptography/drivers/node/RSASHA256Signer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { InvalidSignatureError } from "../../../errors/InvalidSignatureError";
21
import { AsymmetricSigner } from "../../abstract/AsymmetricSigner"
2+
import { InvalidSignatureError } from "../../../errors/InvalidSignatureError"
33

44
// Typescript Types not available for JWT - Proceed with caution
55
// @ts-ignore

src/errors/InvalidSignatureError.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ import { StrontiumError } from "./StrontiumError"
44
* An InvalidSignatureError is thrown when a Cryptographic signature does not match.
55
*/
66
export class InvalidSignatureError extends StrontiumError {
7-
constructor() {
8-
super(
9-
`The signature provided was not valid.`
10-
)
11-
}
7+
constructor() {
8+
super(`The signature provided was not valid.`)
9+
}
1210
}

0 commit comments

Comments
 (0)