huck

RAG for when the codes aren't vibing.

Share and discover code style preferences. Reduce formatting inconsistencies with community-driven style snippets.

How it works

📝

Create Snips

Share your preferred code style rules, linting configs, and formatting preferences

📚

Build Hucks

Curate collections of snips for your projects or team standards

🔄

Fork & Adapt

Fork existing snips and hucks to customize them for your needs

Recent Snips

ESLint Rule: Prefer const

Enforce const for variables that are never reassigned

{ "rules": { "prefer-const": ["error", { "destructuring": "any", "ignoreReadBeforeAssign": false }] } }
234 uses

Prettier: Tab Width 2

Use 2 spaces for indentation

{ "tabWidth": 2, "useTabs": false, "semi": true, "singleQuote": true }
567 uses