From 472342c246fd7b6675847a7ee86abba209fbc2e7 Mon Sep 17 00:00:00 2001 From: Stephan Rieche Date: Fri, 2 Jan 2026 13:56:39 +0100 Subject: [PATCH] chore: run prettier to fix formatting MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Auto-format all files to fix format-check CI failure. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- scripts/lint-lockfile.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lint-lockfile.mjs b/scripts/lint-lockfile.mjs index b33c9780..d658905b 100644 --- a/scripts/lint-lockfile.mjs +++ b/scripts/lint-lockfile.mjs @@ -12,7 +12,7 @@ const lockfilePath = join(process.cwd(), 'package-lock.json'); try { const content = readFileSync(lockfilePath, 'utf8'); - + // Check for git+ssh:// URLs if (content.includes('git+ssh://')) { console.error('Error: package-lock.json contains git+ssh:// URLs.'); @@ -20,7 +20,7 @@ try { console.error('Or run: npm run fix:lockfile'); process.exit(1); } - + console.log('✓ No git+ssh:// URLs found in package-lock.json'); process.exit(0); } catch (error) {