🎨 Format with Biome (#1097)

This commit is contained in:
Alejandra
2024-03-17 17:28:45 +01:00
committed by GitHub
parent d4ee4db2f0
commit 94a2037f8a
31 changed files with 407 additions and 391 deletions

View File

@@ -1,4 +1,4 @@
import * as fs from 'fs'
import * as fs from "node:fs"
async function modifyOpenAPIFile(filePath) {
try {
@@ -26,11 +26,11 @@ async function modifyOpenAPIFile(filePath) {
filePath,
JSON.stringify(openapiContent, null, 2),
)
console.log('File successfully modified')
console.log("File successfully modified")
} catch (err) {
console.error('Error:', err)
console.error("Error:", err)
}
}
const filePath = './openapi.json'
const filePath = "./openapi.json"
modifyOpenAPIFile(filePath)