From 9b88f4ff43cbb9cb15ba9d78d132c893424dcd80 Mon Sep 17 00:00:00 2001 From: Sean Sica <23294618+seansica@users.noreply.github.com> Date: Thu, 17 Oct 2024 15:20:52 -0400 Subject: [PATCH] chore(commitlint): add config file for commitlint --- .gitignore | 2 +- test/utils/attack-data.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 374784a..c880eba 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,7 @@ *.js.map # Test logs -test-logs/**/* +.test-logs/**/* # Files tagged with .ignore *.ignore diff --git a/test/utils/attack-data.ts b/test/utils/attack-data.ts index ff9fbac..959233c 100644 --- a/test/utils/attack-data.ts +++ b/test/utils/attack-data.ts @@ -54,7 +54,7 @@ async function getCachedOrFetchAttackData( try { if (await fileExists(filePath)) { const data = await readFile(filePath, 'utf8'); - console.log(`Successfully read cached file: ${filePath}`); + // console.log(`Successfully read cached file: ${filePath}`); try { return JSON.parse(data) as StixBundle; } catch (parseError) {