Skip to content

Commit

Permalink
chore(commitlint): add config file for commitlint
Browse files Browse the repository at this point in the history
  • Loading branch information
seansica committed Oct 17, 2024
1 parent cd188f8 commit 9b88f4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*.js.map

# Test logs
test-logs/**/*
.test-logs/**/*

# Files tagged with .ignore
*.ignore
Expand Down
2 changes: 1 addition & 1 deletion test/utils/attack-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 9b88f4f

Please sign in to comment.