bump eslint from 8.57.1 to 9.16.0 (#139)

Signed-off-by: Brian DeHamer <[email protected]>
This commit is contained in:
Brian DeHamer
2024-12-16 07:18:21 -08:00
committed by GitHub
parent cfcbc966ee
commit ae2702efaf
7 changed files with 1083 additions and 2236 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ export async function parseSBOMFromPath(filePath: string): Promise<SBOM> {
// Read the file content
const fileContent = await fs.promises.readFile(filePath, 'utf8')
const sbom = JSON.parse(fileContent)
const sbom = JSON.parse(fileContent) as object
if (checkIsSPDX(sbom)) {
return { type: 'spdx', object: sbom }