Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Living wiki of UI design patterns and best practices built with Fumadocs, Next.js, and Base UI components.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
rules/envelope-no-zero-target.md
1---2title: No Zero Target for Exponential Ramps3impact: HIGH4tags: envelope, exponential, zero5---67## No Zero Target for Exponential Ramps89Exponential ramps cannot target 0; use 0.001 or similar small value.1011**Incorrect (targets zero):**1213```ts14gain.gain.exponentialRampToValueAtTime(0, t + 0.05);15```1617**Correct (targets near-zero):**1819```ts20gain.gain.exponentialRampToValueAtTime(0.001, t + 0.05);21```22