Skip to content

Instantly share code, notes, and snippets.

@maxsei
Created January 10, 2026 18:34
Show Gist options
  • Select an option

  • Save maxsei/3d6c98b9e2573f34ded121dd6fa1030e to your computer and use it in GitHub Desktop.

Select an option

Save maxsei/3d6c98b9e2573f34ded121dd6fa1030e to your computer and use it in GitHub Desktop.
console.log`got otp from stdin: ${otp}`); // ❌ Wrong
console.log(`got otp from stdin: ${otp}`); // ✅ Correct
throw new Error`failed...`); // ❌ Wrong
throw new Error(`failed...`); // ✅ Correct
await Bun.write`${runDirPath}/api-response.json`, ...); // ❌ Wrong
await Bun.write(`${runDirPath}/api-response.json`, ...); // ✅ Correct
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment