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/param-click-duration.md
1---2title: Click Duration 5-15ms3impact: MEDIUM4tags: param, click, duration5---67## Click Duration 5-15ms89Click/tap sounds should be 5-15ms duration.1011**Incorrect (too long):**1213```ts14const buffer = ctx.createBuffer(1, ctx.sampleRate * 0.1, ctx.sampleRate);15```1617**Correct (appropriate duration):**1819```ts20const buffer = ctx.createBuffer(1, ctx.sampleRate * 0.008, ctx.sampleRate);21```22