From 78a2faf14a5089734ebf8bbdb1534a3e73302315 Mon Sep 17 00:00:00 2001 From: Jan Kowalleck Date: Wed, 13 Nov 2024 18:09:18 +0100 Subject: [PATCH] test Signed-off-by: Jan Kowalleck --- examples/node/typescript/example.cjs/src/example.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/node/typescript/example.cjs/src/example.ts b/examples/node/typescript/example.cjs/src/example.ts index bc38a42fe..68bc99beb 100644 --- a/examples/node/typescript/example.cjs/src/example.ts +++ b/examples/node/typescript/example.cjs/src/example.ts @@ -65,7 +65,7 @@ jsonValidator.validate(serializedJson) if (err instanceof CDX.Validation.MissingOptionalDependencyError) { console.info('JSON validation skipped:', err) } else { - /* eslint-disable-next-line @typescript-eslint/only-throw-error -- forward */ + /* xxx-eslint-disable-next-line @typescript-eslint/only-throw-error -- forward */ throw err } })