Skip to content

Commit 4a90d78

Browse files
committed
Fix linting issues
1 parent 77a719a commit 4a90d78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/generators/ctfd.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ function createCtfdExport (challenges, { insertHints, insertHintUrls, insertHint
7070
}
7171
hints.push(hint)
7272
}
73-
const hints_obj = JSON.stringify(hints).replace(/"/g, '""')
74-
row.hints = `"${hints_obj}"`
73+
const hintsObject = JSON.stringify(hints).replace(/"/g, '""')
74+
row.hints = `"${hintsObject}"`
7575
} else {
7676
row.hints = ''
7777
}

0 commit comments

Comments
 (0)