├── .changeset ├── README.md └── config.json ├── .cursor └── rules │ └── ultracite.mdc ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── SECURITY.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── release.yml │ └── validate.yml ├── .gitignore ├── .vscode └── settings.json ├── CLAUDE.md ├── README.md ├── SECURITY.md ├── apps └── docs │ ├── .translation-cache.json │ ├── actions │ └── discuss.ts │ ├── app │ ├── [lang] │ │ ├── (home) │ │ │ ├── components │ │ │ │ ├── agents │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── logos │ │ │ │ │ │ ├── claude.svg │ │ │ │ │ │ ├── codex.svg │ │ │ │ │ │ ├── cursor.svg │ │ │ │ │ │ ├── gemini.svg │ │ │ │ │ │ ├── warp.svg │ │ │ │ │ │ ├── windsurf.svg │ │ │ │ │ │ └── zed.svg │ │ │ │ ├── avatars │ │ │ │ │ ├── claude.jpg │ │ │ │ │ ├── deepseek.jpg │ │ │ │ │ ├── haydenbleasel.jpg │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── openai.jpg │ │ │ │ │ ├── piersonmarks.jpg │ │ │ │ │ └── shadcn.jpg │ │ │ │ ├── code-block.tsx │ │ │ │ ├── comparison.tsx │ │ │ │ ├── cta.tsx │ │ │ │ ├── demo │ │ │ │ │ ├── background.jpg │ │ │ │ │ └── index.tsx │ │ │ │ ├── footer.tsx │ │ │ │ ├── footer │ │ │ │ │ └── pixel-canvas.tsx │ │ │ │ ├── hero.tsx │ │ │ │ ├── ide │ │ │ │ │ ├── assistant.tsx │ │ │ │ │ ├── editor.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── indicator.tsx │ │ │ │ │ ├── problems.tsx │ │ │ │ │ └── sidebar.tsx │ │ │ │ ├── installer.tsx │ │ │ │ ├── logo.tsx │ │ │ │ ├── logos │ │ │ │ │ ├── adobe.svg │ │ │ │ │ ├── arcade.svg │ │ │ │ │ ├── ati.svg │ │ │ │ │ ├── axiom.svg │ │ │ │ │ ├── clerk.svg │ │ │ │ │ ├── consent.svg │ │ │ │ │ ├── french-government.svg │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── magic-ui.svg │ │ │ │ │ ├── profound.svg │ │ │ │ │ ├── tencent.svg │ │ │ │ │ ├── va.svg │ │ │ │ │ └── vercel.svg │ │ │ │ ├── social.tsx │ │ │ │ ├── tweets.tsx │ │ │ │ ├── video.tsx │ │ │ │ ├── videos.tsx │ │ │ │ └── zero-config │ │ │ │ │ ├── icons.tsx │ │ │ │ │ └── index.tsx │ │ │ └── page.tsx │ │ ├── [...slug] │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── llms-full.txt │ │ │ └── route.ts │ │ ├── llms.mdx │ │ │ └── [[...slug]] │ │ │ │ └── route.ts │ │ ├── og │ │ │ └── [...slug] │ │ │ │ ├── Geist-Bold.ttf │ │ │ │ ├── Geist-Regular.ttf │ │ │ │ └── route.tsx │ │ └── social │ │ │ └── page.tsx │ ├── api │ │ ├── mcp │ │ │ └── [transport] │ │ │ │ └── route.ts │ │ └── search │ │ │ └── route.ts │ ├── apple-icon.png │ ├── global.css │ ├── icon.png │ └── opengraph-image.jpg │ ├── components.json │ ├── components │ ├── ai-elements │ │ └── open-in-chat.tsx │ ├── copy-markdown.tsx │ ├── feedback.tsx │ ├── kibo-ui │ │ └── marquee │ │ │ └── index.tsx │ ├── language-selector.tsx │ ├── navbar.tsx │ ├── page-actions.tsx │ ├── search.tsx │ ├── theme-toggle.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button-group.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── empty.tsx │ │ ├── field.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-group.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── item.tsx │ │ ├── kbd.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── spinner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ └── tooltip.tsx │ ├── content │ ├── (docs) │ │ ├── configuration.cn.mdx │ │ ├── configuration.da.mdx │ │ ├── configuration.de.mdx │ │ ├── configuration.es.mdx │ │ ├── configuration.fi.mdx │ │ ├── configuration.fr.mdx │ │ ├── configuration.ga.mdx │ │ ├── configuration.hu.mdx │ │ ├── configuration.id.mdx │ │ ├── configuration.it.mdx │ │ ├── configuration.jp.mdx │ │ ├── configuration.mdx │ │ ├── configuration.nl.mdx │ │ ├── configuration.no.mdx │ │ ├── configuration.pt.mdx │ │ ├── configuration.ro.mdx │ │ ├── configuration.sl.mdx │ │ ├── configuration.sr.mdx │ │ ├── configuration.sv.mdx │ │ ├── configuration.tr.mdx │ │ ├── examples.cn.mdx │ │ ├── examples.da.mdx │ │ ├── examples.de.mdx │ │ ├── examples.es.mdx │ │ ├── examples.fi.mdx │ │ ├── examples.fr.mdx │ │ ├── examples.ga.mdx │ │ ├── examples.hu.mdx │ │ ├── examples.id.mdx │ │ ├── examples.it.mdx │ │ ├── examples.jp.mdx │ │ ├── examples.mdx │ │ ├── examples.nl.mdx │ │ ├── examples.no.mdx │ │ ├── examples.pt.mdx │ │ ├── examples.ro.mdx │ │ ├── examples.sl.mdx │ │ ├── examples.sr.mdx │ │ ├── examples.sv.mdx │ │ ├── examples.tr.mdx │ │ ├── faq.cn.mdx │ │ ├── faq.da.mdx │ │ ├── faq.de.mdx │ │ ├── faq.es.mdx │ │ ├── faq.fi.mdx │ │ ├── faq.fr.mdx │ │ ├── faq.ga.mdx │ │ ├── faq.hu.mdx │ │ ├── faq.id.mdx │ │ ├── faq.it.mdx │ │ ├── faq.jp.mdx │ │ ├── faq.mdx │ │ ├── faq.nl.mdx │ │ ├── faq.no.mdx │ │ ├── faq.pt.mdx │ │ ├── faq.ro.mdx │ │ ├── faq.sl.mdx │ │ ├── faq.sr.mdx │ │ ├── faq.sv.mdx │ │ ├── faq.tr.mdx │ │ ├── hooks.cn.mdx │ │ ├── hooks.da.mdx │ │ ├── hooks.de.mdx │ │ ├── hooks.es.mdx │ │ ├── hooks.fi.mdx │ │ ├── hooks.fr.mdx │ │ ├── hooks.ga.mdx │ │ ├── hooks.hu.mdx │ │ ├── hooks.id.mdx │ │ ├── hooks.it.mdx │ │ ├── hooks.jp.mdx │ │ ├── hooks.mdx │ │ ├── hooks.nl.mdx │ │ ├── hooks.no.mdx │ │ ├── hooks.pt.mdx │ │ ├── hooks.ro.mdx │ │ ├── hooks.sl.mdx │ │ ├── hooks.sr.mdx │ │ ├── hooks.sv.mdx │ │ ├── hooks.tr.mdx │ │ ├── introduction.cn.mdx │ │ ├── introduction.da.mdx │ │ ├── introduction.de.mdx │ │ ├── introduction.es.mdx │ │ ├── introduction.fi.mdx │ │ ├── introduction.fr.mdx │ │ ├── introduction.ga.mdx │ │ ├── introduction.hu.mdx │ │ ├── introduction.id.mdx │ │ ├── introduction.it.mdx │ │ ├── introduction.jp.mdx │ │ ├── introduction.mdx │ │ ├── introduction.nl.mdx │ │ ├── introduction.no.mdx │ │ ├── introduction.pt.mdx │ │ ├── introduction.ro.mdx │ │ ├── introduction.sl.mdx │ │ ├── introduction.sr.mdx │ │ ├── introduction.sv.mdx │ │ ├── introduction.tr.mdx │ │ ├── mcp.cn.mdx │ │ ├── mcp.da.mdx │ │ ├── mcp.de.mdx │ │ ├── mcp.es.mdx │ │ ├── mcp.fi.mdx │ │ ├── mcp.fr.mdx │ │ ├── mcp.ga.mdx │ │ ├── mcp.hu.mdx │ │ ├── mcp.id.mdx │ │ ├── mcp.it.mdx │ │ ├── mcp.jp.mdx │ │ ├── mcp.mdx │ │ ├── mcp.nl.mdx │ │ ├── mcp.no.mdx │ │ ├── mcp.pt.mdx │ │ ├── mcp.ro.mdx │ │ ├── mcp.sl.mdx │ │ ├── mcp.sr.mdx │ │ ├── mcp.sv.mdx │ │ ├── mcp.tr.mdx │ │ ├── meta.json │ │ ├── monorepos.cn.mdx │ │ ├── monorepos.da.mdx │ │ ├── monorepos.de.mdx │ │ ├── monorepos.es.mdx │ │ ├── monorepos.fi.mdx │ │ ├── monorepos.fr.mdx │ │ ├── monorepos.ga.mdx │ │ ├── monorepos.hu.mdx │ │ ├── monorepos.id.mdx │ │ ├── monorepos.it.mdx │ │ ├── monorepos.jp.mdx │ │ ├── monorepos.mdx │ │ ├── monorepos.nl.mdx │ │ ├── monorepos.no.mdx │ │ ├── monorepos.pt.mdx │ │ ├── monorepos.ro.mdx │ │ ├── monorepos.sl.mdx │ │ ├── monorepos.sr.mdx │ │ ├── monorepos.sv.mdx │ │ ├── monorepos.tr.mdx │ │ ├── rules.cn.mdx │ │ ├── rules.da.mdx │ │ ├── rules.de.mdx │ │ ├── rules.es.mdx │ │ ├── rules.fi.mdx │ │ ├── rules.fr.mdx │ │ ├── rules.ga.mdx │ │ ├── rules.hu.mdx │ │ ├── rules.id.mdx │ │ ├── rules.it.mdx │ │ ├── rules.jp.mdx │ │ ├── rules.mdx │ │ ├── rules.nl.mdx │ │ ├── rules.no.mdx │ │ ├── rules.pt.mdx │ │ ├── rules.ro.mdx │ │ ├── rules.sl.mdx │ │ ├── rules.sr.mdx │ │ ├── rules.sv.mdx │ │ ├── rules.tr.mdx │ │ ├── setup.cn.mdx │ │ ├── setup.da.mdx │ │ ├── setup.de.mdx │ │ ├── setup.es.mdx │ │ ├── setup.fi.mdx │ │ ├── setup.fr.mdx │ │ ├── setup.ga.mdx │ │ ├── setup.hu.mdx │ │ ├── setup.id.mdx │ │ ├── setup.it.mdx │ │ ├── setup.jp.mdx │ │ ├── setup.mdx │ │ ├── setup.nl.mdx │ │ ├── setup.no.mdx │ │ ├── setup.pt.mdx │ │ ├── setup.ro.mdx │ │ ├── setup.sl.mdx │ │ ├── setup.sr.mdx │ │ ├── setup.sv.mdx │ │ ├── setup.tr.mdx │ │ ├── sponsors.cn.mdx │ │ ├── sponsors.da.mdx │ │ ├── sponsors.de.mdx │ │ ├── sponsors.es.mdx │ │ ├── sponsors.fi.mdx │ │ ├── sponsors.fr.mdx │ │ ├── sponsors.ga.mdx │ │ ├── sponsors.hu.mdx │ │ ├── sponsors.id.mdx │ │ ├── sponsors.it.mdx │ │ ├── sponsors.jp.mdx │ │ ├── sponsors.mdx │ │ ├── sponsors.nl.mdx │ │ ├── sponsors.no.mdx │ │ ├── sponsors.pt.mdx │ │ ├── sponsors.ro.mdx │ │ ├── sponsors.sl.mdx │ │ ├── sponsors.sr.mdx │ │ ├── sponsors.sv.mdx │ │ ├── sponsors.tr.mdx │ │ ├── troubleshooting.cn.mdx │ │ ├── troubleshooting.da.mdx │ │ ├── troubleshooting.de.mdx │ │ ├── troubleshooting.es.mdx │ │ ├── troubleshooting.fi.mdx │ │ ├── troubleshooting.fr.mdx │ │ ├── troubleshooting.ga.mdx │ │ ├── troubleshooting.hu.mdx │ │ ├── troubleshooting.id.mdx │ │ ├── troubleshooting.it.mdx │ │ ├── troubleshooting.jp.mdx │ │ ├── troubleshooting.mdx │ │ ├── troubleshooting.nl.mdx │ │ ├── troubleshooting.no.mdx │ │ ├── troubleshooting.pt.mdx │ │ ├── troubleshooting.ro.mdx │ │ ├── troubleshooting.sl.mdx │ │ ├── troubleshooting.sr.mdx │ │ ├── troubleshooting.sv.mdx │ │ ├── troubleshooting.tr.mdx │ │ ├── usage.cn.mdx │ │ ├── usage.da.mdx │ │ ├── usage.de.mdx │ │ ├── usage.es.mdx │ │ ├── usage.fi.mdx │ │ ├── usage.fr.mdx │ │ ├── usage.ga.mdx │ │ ├── usage.hu.mdx │ │ ├── usage.id.mdx │ │ ├── usage.it.mdx │ │ ├── usage.jp.mdx │ │ ├── usage.mdx │ │ ├── usage.nl.mdx │ │ ├── usage.no.mdx │ │ ├── usage.pt.mdx │ │ ├── usage.ro.mdx │ │ ├── usage.sl.mdx │ │ ├── usage.sr.mdx │ │ ├── usage.sv.mdx │ │ └── usage.tr.mdx │ ├── integration │ │ ├── husky.cn.mdx │ │ ├── husky.da.mdx │ │ ├── husky.de.mdx │ │ ├── husky.es.mdx │ │ ├── husky.fi.mdx │ │ ├── husky.fr.mdx │ │ ├── husky.ga.mdx │ │ ├── husky.hu.mdx │ │ ├── husky.id.mdx │ │ ├── husky.it.mdx │ │ ├── husky.jp.mdx │ │ ├── husky.mdx │ │ ├── husky.nl.mdx │ │ ├── husky.no.mdx │ │ ├── husky.pt.mdx │ │ ├── husky.ro.mdx │ │ ├── husky.sl.mdx │ │ ├── husky.sr.mdx │ │ ├── husky.sv.mdx │ │ ├── husky.tr.mdx │ │ ├── lefthook.cn.mdx │ │ ├── lefthook.da.mdx │ │ ├── lefthook.de.mdx │ │ ├── lefthook.es.mdx │ │ ├── lefthook.fi.mdx │ │ ├── lefthook.fr.mdx │ │ ├── lefthook.ga.mdx │ │ ├── lefthook.hu.mdx │ │ ├── lefthook.id.mdx │ │ ├── lefthook.it.mdx │ │ ├── lefthook.jp.mdx │ │ ├── lefthook.mdx │ │ ├── lefthook.nl.mdx │ │ ├── lefthook.no.mdx │ │ ├── lefthook.pt.mdx │ │ ├── lefthook.ro.mdx │ │ ├── lefthook.sl.mdx │ │ ├── lefthook.sr.mdx │ │ ├── lefthook.sv.mdx │ │ ├── lefthook.tr.mdx │ │ ├── lint-staged.cn.mdx │ │ ├── lint-staged.da.mdx │ │ ├── lint-staged.de.mdx │ │ ├── lint-staged.es.mdx │ │ ├── lint-staged.fi.mdx │ │ ├── lint-staged.fr.mdx │ │ ├── lint-staged.ga.mdx │ │ ├── lint-staged.hu.mdx │ │ ├── lint-staged.id.mdx │ │ ├── lint-staged.it.mdx │ │ ├── lint-staged.jp.mdx │ │ ├── lint-staged.mdx │ │ ├── lint-staged.nl.mdx │ │ ├── lint-staged.no.mdx │ │ ├── lint-staged.pt.mdx │ │ ├── lint-staged.ro.mdx │ │ ├── lint-staged.sl.mdx │ │ ├── lint-staged.sr.mdx │ │ ├── lint-staged.sv.mdx │ │ ├── lint-staged.tr.mdx │ │ └── meta.json │ ├── meta.json │ ├── migrate │ │ ├── biome.cn.mdx │ │ ├── biome.da.mdx │ │ ├── biome.de.mdx │ │ ├── biome.es.mdx │ │ ├── biome.fi.mdx │ │ ├── biome.fr.mdx │ │ ├── biome.ga.mdx │ │ ├── biome.hu.mdx │ │ ├── biome.id.mdx │ │ ├── biome.it.mdx │ │ ├── biome.jp.mdx │ │ ├── biome.mdx │ │ ├── biome.nl.mdx │ │ ├── biome.no.mdx │ │ ├── biome.pt.mdx │ │ ├── biome.ro.mdx │ │ ├── biome.sl.mdx │ │ ├── biome.sr.mdx │ │ ├── biome.sv.mdx │ │ ├── biome.tr.mdx │ │ ├── eslint.cn.mdx │ │ ├── eslint.da.mdx │ │ ├── eslint.de.mdx │ │ ├── eslint.es.mdx │ │ ├── eslint.fi.mdx │ │ ├── eslint.fr.mdx │ │ ├── eslint.ga.mdx │ │ ├── eslint.hu.mdx │ │ ├── eslint.id.mdx │ │ ├── eslint.it.mdx │ │ ├── eslint.jp.mdx │ │ ├── eslint.mdx │ │ ├── eslint.nl.mdx │ │ ├── eslint.no.mdx │ │ ├── eslint.pt.mdx │ │ ├── eslint.ro.mdx │ │ ├── eslint.sl.mdx │ │ ├── eslint.sr.mdx │ │ ├── eslint.sv.mdx │ │ ├── eslint.tr.mdx │ │ ├── meta.json │ │ ├── prettier.cn.mdx │ │ ├── prettier.da.mdx │ │ ├── prettier.de.mdx │ │ ├── prettier.es.mdx │ │ ├── prettier.fi.mdx │ │ ├── prettier.fr.mdx │ │ ├── prettier.ga.mdx │ │ ├── prettier.hu.mdx │ │ ├── prettier.id.mdx │ │ ├── prettier.it.mdx │ │ ├── prettier.jp.mdx │ │ ├── prettier.mdx │ │ ├── prettier.nl.mdx │ │ ├── prettier.no.mdx │ │ ├── prettier.pt.mdx │ │ ├── prettier.ro.mdx │ │ ├── prettier.sl.mdx │ │ ├── prettier.sr.mdx │ │ ├── prettier.sv.mdx │ │ └── prettier.tr.mdx │ ├── preset │ │ ├── angular.cn.mdx │ │ ├── angular.da.mdx │ │ ├── angular.de.mdx │ │ ├── angular.es.mdx │ │ ├── angular.fi.mdx │ │ ├── angular.fr.mdx │ │ ├── angular.ga.mdx │ │ ├── angular.hu.mdx │ │ ├── angular.id.mdx │ │ ├── angular.it.mdx │ │ ├── angular.jp.mdx │ │ ├── angular.mdx │ │ ├── angular.nl.mdx │ │ ├── angular.no.mdx │ │ ├── angular.pt.mdx │ │ ├── angular.ro.mdx │ │ ├── angular.sl.mdx │ │ ├── angular.sr.mdx │ │ ├── angular.sv.mdx │ │ ├── angular.tr.mdx │ │ ├── astro.cn.mdx │ │ ├── astro.da.mdx │ │ ├── astro.de.mdx │ │ ├── astro.es.mdx │ │ ├── astro.fi.mdx │ │ ├── astro.fr.mdx │ │ ├── astro.ga.mdx │ │ ├── astro.hu.mdx │ │ ├── astro.id.mdx │ │ ├── astro.it.mdx │ │ ├── astro.jp.mdx │ │ ├── astro.mdx │ │ ├── astro.nl.mdx │ │ ├── astro.no.mdx │ │ ├── astro.pt.mdx │ │ ├── astro.ro.mdx │ │ ├── astro.sl.mdx │ │ ├── astro.sr.mdx │ │ ├── astro.sv.mdx │ │ ├── astro.tr.mdx │ │ ├── core.cn.mdx │ │ ├── core.da.mdx │ │ ├── core.de.mdx │ │ ├── core.es.mdx │ │ ├── core.fi.mdx │ │ ├── core.fr.mdx │ │ ├── core.ga.mdx │ │ ├── core.hu.mdx │ │ ├── core.id.mdx │ │ ├── core.it.mdx │ │ ├── core.jp.mdx │ │ ├── core.mdx │ │ ├── core.nl.mdx │ │ ├── core.no.mdx │ │ ├── core.pt.mdx │ │ ├── core.ro.mdx │ │ ├── core.sl.mdx │ │ ├── core.sr.mdx │ │ ├── core.sv.mdx │ │ ├── core.tr.mdx │ │ ├── meta.json │ │ ├── next.cn.mdx │ │ ├── next.da.mdx │ │ ├── next.de.mdx │ │ ├── next.es.mdx │ │ ├── next.fi.mdx │ │ ├── next.fr.mdx │ │ ├── next.ga.mdx │ │ ├── next.hu.mdx │ │ ├── next.id.mdx │ │ ├── next.it.mdx │ │ ├── next.jp.mdx │ │ ├── next.mdx │ │ ├── next.nl.mdx │ │ ├── next.no.mdx │ │ ├── next.pt.mdx │ │ ├── next.ro.mdx │ │ ├── next.sl.mdx │ │ ├── next.sr.mdx │ │ ├── next.sv.mdx │ │ ├── next.tr.mdx │ │ ├── qwik.cn.mdx │ │ ├── qwik.da.mdx │ │ ├── qwik.de.mdx │ │ ├── qwik.es.mdx │ │ ├── qwik.fi.mdx │ │ ├── qwik.fr.mdx │ │ ├── qwik.ga.mdx │ │ ├── qwik.hu.mdx │ │ ├── qwik.id.mdx │ │ ├── qwik.it.mdx │ │ ├── qwik.jp.mdx │ │ ├── qwik.mdx │ │ ├── qwik.nl.mdx │ │ ├── qwik.no.mdx │ │ ├── qwik.pt.mdx │ │ ├── qwik.ro.mdx │ │ ├── qwik.sl.mdx │ │ ├── qwik.sr.mdx │ │ ├── qwik.sv.mdx │ │ ├── qwik.tr.mdx │ │ ├── react.cn.mdx │ │ ├── react.da.mdx │ │ ├── react.de.mdx │ │ ├── react.es.mdx │ │ ├── react.fi.mdx │ │ ├── react.fr.mdx │ │ ├── react.ga.mdx │ │ ├── react.hu.mdx │ │ ├── react.id.mdx │ │ ├── react.it.mdx │ │ ├── react.jp.mdx │ │ ├── react.mdx │ │ ├── react.nl.mdx │ │ ├── react.no.mdx │ │ ├── react.pt.mdx │ │ ├── react.ro.mdx │ │ ├── react.sl.mdx │ │ ├── react.sr.mdx │ │ ├── react.sv.mdx │ │ ├── react.tr.mdx │ │ ├── remix.cn.mdx │ │ ├── remix.da.mdx │ │ ├── remix.de.mdx │ │ ├── remix.es.mdx │ │ ├── remix.fi.mdx │ │ ├── remix.fr.mdx │ │ ├── remix.ga.mdx │ │ ├── remix.hu.mdx │ │ ├── remix.id.mdx │ │ ├── remix.it.mdx │ │ ├── remix.jp.mdx │ │ ├── remix.mdx │ │ ├── remix.nl.mdx │ │ ├── remix.no.mdx │ │ ├── remix.pt.mdx │ │ ├── remix.ro.mdx │ │ ├── remix.sl.mdx │ │ ├── remix.sr.mdx │ │ ├── remix.sv.mdx │ │ ├── remix.tr.mdx │ │ ├── solid.cn.mdx │ │ ├── solid.da.mdx │ │ ├── solid.de.mdx │ │ ├── solid.es.mdx │ │ ├── solid.fi.mdx │ │ ├── solid.fr.mdx │ │ ├── solid.ga.mdx │ │ ├── solid.hu.mdx │ │ ├── solid.id.mdx │ │ ├── solid.it.mdx │ │ ├── solid.jp.mdx │ │ ├── solid.mdx │ │ ├── solid.nl.mdx │ │ ├── solid.no.mdx │ │ ├── solid.pt.mdx │ │ ├── solid.ro.mdx │ │ ├── solid.sl.mdx │ │ ├── solid.sr.mdx │ │ ├── solid.sv.mdx │ │ ├── solid.tr.mdx │ │ ├── svelte.cn.mdx │ │ ├── svelte.da.mdx │ │ ├── svelte.de.mdx │ │ ├── svelte.es.mdx │ │ ├── svelte.fi.mdx │ │ ├── svelte.fr.mdx │ │ ├── svelte.ga.mdx │ │ ├── svelte.hu.mdx │ │ ├── svelte.id.mdx │ │ ├── svelte.it.mdx │ │ ├── svelte.jp.mdx │ │ ├── svelte.mdx │ │ ├── svelte.nl.mdx │ │ ├── svelte.no.mdx │ │ ├── svelte.pt.mdx │ │ ├── svelte.ro.mdx │ │ ├── svelte.sl.mdx │ │ ├── svelte.sr.mdx │ │ ├── svelte.sv.mdx │ │ ├── svelte.tr.mdx │ │ ├── vue.cn.mdx │ │ ├── vue.da.mdx │ │ ├── vue.de.mdx │ │ ├── vue.es.mdx │ │ ├── vue.fi.mdx │ │ ├── vue.fr.mdx │ │ ├── vue.ga.mdx │ │ ├── vue.hu.mdx │ │ ├── vue.id.mdx │ │ ├── vue.it.mdx │ │ ├── vue.jp.mdx │ │ ├── vue.mdx │ │ ├── vue.nl.mdx │ │ ├── vue.no.mdx │ │ ├── vue.pt.mdx │ │ ├── vue.ro.mdx │ │ ├── vue.sl.mdx │ │ ├── vue.sr.mdx │ │ ├── vue.sv.mdx │ │ └── vue.tr.mdx │ └── upgrade │ │ ├── meta.json │ │ ├── v5.cn.mdx │ │ ├── v5.da.mdx │ │ ├── v5.de.mdx │ │ ├── v5.es.mdx │ │ ├── v5.fi.mdx │ │ ├── v5.fr.mdx │ │ ├── v5.ga.mdx │ │ ├── v5.hu.mdx │ │ ├── v5.id.mdx │ │ ├── v5.it.mdx │ │ ├── v5.jp.mdx │ │ ├── v5.mdx │ │ ├── v5.nl.mdx │ │ ├── v5.no.mdx │ │ ├── v5.pt.mdx │ │ ├── v5.ro.mdx │ │ ├── v5.sl.mdx │ │ ├── v5.sr.mdx │ │ ├── v5.sv.mdx │ │ ├── v5.tr.mdx │ │ ├── v6.cn.mdx │ │ ├── v6.da.mdx │ │ ├── v6.de.mdx │ │ ├── v6.es.mdx │ │ ├── v6.fi.mdx │ │ ├── v6.fr.mdx │ │ ├── v6.ga.mdx │ │ ├── v6.hu.mdx │ │ ├── v6.id.mdx │ │ ├── v6.it.mdx │ │ ├── v6.jp.mdx │ │ ├── v6.mdx │ │ ├── v6.nl.mdx │ │ ├── v6.no.mdx │ │ ├── v6.pt.mdx │ │ ├── v6.ro.mdx │ │ ├── v6.sl.mdx │ │ ├── v6.sr.mdx │ │ ├── v6.sv.mdx │ │ └── v6.tr.mdx │ ├── env.ts │ ├── hooks │ └── use-mobile.ts │ ├── lib │ ├── i18n.ts │ ├── rules.ts │ ├── source.ts │ └── utils.ts │ ├── mdx-components.tsx │ ├── next-env.d.ts │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── proxy.ts │ ├── public │ ├── coderabbit.png │ └── llms.txt │ ├── scripts │ └── translate-docs.ts │ ├── skip-ci.js │ ├── source.config.ts │ ├── tsconfig.json │ └── vercel.json ├── biome.jsonc ├── bun.lock ├── license.md ├── package.json ├── packages └── cli │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ ├── agents.test.ts │ ├── biome.test.ts │ ├── check.test.ts │ ├── doctor.test.ts │ ├── eslint.test.ts │ ├── fix.test.ts │ ├── hooks.test.ts │ ├── husky.test.ts │ ├── index.test.ts │ ├── initialize.test.ts │ ├── lefthook.test.ts │ ├── lint-staged.test.ts │ ├── prettier.test.ts │ ├── tsconfig.test.ts │ ├── utils.test.ts │ ├── vscode.test.ts │ └── zed.test.ts │ ├── config │ ├── angular │ │ └── biome.jsonc │ ├── astro │ │ └── biome.jsonc │ ├── core │ │ └── biome.jsonc │ ├── next │ │ └── biome.jsonc │ ├── qwik │ │ └── biome.jsonc │ ├── react │ │ └── biome.jsonc │ ├── remix │ │ └── biome.jsonc │ ├── solid │ │ └── biome.jsonc │ ├── svelte │ │ └── biome.jsonc │ └── vue │ │ └── biome.jsonc │ ├── package.json │ ├── src │ ├── agents │ │ ├── index.ts │ │ └── rules.ts │ ├── biome.ts │ ├── commands │ │ ├── check.ts │ │ ├── doctor.ts │ │ └── fix.ts │ ├── consts │ │ ├── options.ts │ │ └── rules.ts │ ├── editor-config │ │ ├── vscode │ │ │ ├── default-config.ts │ │ │ └── index.ts │ │ └── zed │ │ │ ├── default-config.ts │ │ │ └── index.ts │ ├── hooks │ │ └── index.ts │ ├── index.ts │ ├── initialize.ts │ ├── integrations │ │ ├── husky.ts │ │ ├── lefthook.ts │ │ └── lint-staged.ts │ ├── migrations │ │ ├── eslint.ts │ │ └── prettier.ts │ ├── tsconfig.ts │ └── utils.ts │ ├── tsconfig.json │ └── tsup.config.ts ├── test ├── test.html └── test.tsx ├── tsconfig.json └── turbo.json /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.cursor/rules/ultracite.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/.cursor/rules/ultracite.mdc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [haydenbleasel] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | packages/cli/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/SECURITY.md -------------------------------------------------------------------------------- /apps/docs/.translation-cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/.translation-cache.json -------------------------------------------------------------------------------- /apps/docs/actions/discuss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/actions/discuss.ts -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/agents/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/agents/index.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/avatars/claude.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/avatars/claude.jpg -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/avatars/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/avatars/index.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/avatars/openai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/avatars/openai.jpg -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/code-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/code-block.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/comparison.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/comparison.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/cta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/cta.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/demo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/demo/index.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/footer.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/hero.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/ide/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/ide/editor.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/ide/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/ide/index.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/ide/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/ide/sidebar.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/installer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/installer.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/logo.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/logos/adobe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/logos/adobe.svg -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/logos/ati.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/logos/ati.svg -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/logos/axiom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/logos/axiom.svg -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/logos/clerk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/logos/clerk.svg -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/logos/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/logos/index.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/logos/va.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/logos/va.svg -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/social.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/social.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/tweets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/tweets.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/video.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/components/videos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/components/videos.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/(home)/page.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/[...slug]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/[...slug]/layout.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/[...slug]/page.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/layout.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/llms-full.txt/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/llms-full.txt/route.ts -------------------------------------------------------------------------------- /apps/docs/app/[lang]/llms.mdx/[[...slug]]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/llms.mdx/[[...slug]]/route.ts -------------------------------------------------------------------------------- /apps/docs/app/[lang]/og/[...slug]/Geist-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/og/[...slug]/Geist-Bold.ttf -------------------------------------------------------------------------------- /apps/docs/app/[lang]/og/[...slug]/Geist-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/og/[...slug]/Geist-Regular.ttf -------------------------------------------------------------------------------- /apps/docs/app/[lang]/og/[...slug]/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/og/[...slug]/route.tsx -------------------------------------------------------------------------------- /apps/docs/app/[lang]/social/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/[lang]/social/page.tsx -------------------------------------------------------------------------------- /apps/docs/app/api/mcp/[transport]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/api/mcp/[transport]/route.ts -------------------------------------------------------------------------------- /apps/docs/app/api/search/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/api/search/route.ts -------------------------------------------------------------------------------- /apps/docs/app/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/apple-icon.png -------------------------------------------------------------------------------- /apps/docs/app/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/global.css -------------------------------------------------------------------------------- /apps/docs/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/icon.png -------------------------------------------------------------------------------- /apps/docs/app/opengraph-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/app/opengraph-image.jpg -------------------------------------------------------------------------------- /apps/docs/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components.json -------------------------------------------------------------------------------- /apps/docs/components/ai-elements/open-in-chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ai-elements/open-in-chat.tsx -------------------------------------------------------------------------------- /apps/docs/components/copy-markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/copy-markdown.tsx -------------------------------------------------------------------------------- /apps/docs/components/feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/feedback.tsx -------------------------------------------------------------------------------- /apps/docs/components/kibo-ui/marquee/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/kibo-ui/marquee/index.tsx -------------------------------------------------------------------------------- /apps/docs/components/language-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/language-selector.tsx -------------------------------------------------------------------------------- /apps/docs/components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/navbar.tsx -------------------------------------------------------------------------------- /apps/docs/components/page-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/page-actions.tsx -------------------------------------------------------------------------------- /apps/docs/components/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/search.tsx -------------------------------------------------------------------------------- /apps/docs/components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/theme-toggle.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/accordion.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/alert.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/avatar.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/badge.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/button-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/button-group.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/button.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/calendar.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/card.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/carousel.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/chart.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/command.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/dialog.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/drawer.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/empty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/empty.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/field.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/form.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/input-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/input-group.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/input.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/item.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/kbd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/kbd.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/label.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/menubar.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/pagination.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/popover.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/progress.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/resizable.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/select.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/separator.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/sheet.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/slider.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/sonner.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/spinner.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/switch.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/table.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/tabs.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/textarea.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/toggle.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/configuration.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/configuration.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/examples.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/examples.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/faq.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/faq.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/hooks.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/hooks.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/introduction.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/introduction.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/mcp.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/mcp.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/meta.json -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/monorepos.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/monorepos.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/rules.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/rules.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/setup.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/setup.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/sponsors.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/sponsors.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/troubleshooting.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/troubleshooting.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/(docs)/usage.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/(docs)/usage.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/husky.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/husky.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lefthook.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lefthook.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/lint-staged.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/lint-staged.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/integration/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/integration/meta.json -------------------------------------------------------------------------------- /apps/docs/content/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/meta.json -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/biome.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/biome.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/eslint.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/eslint.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/meta.json -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/migrate/prettier.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/migrate/prettier.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/angular.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/angular.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/astro.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/astro.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/core.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/core.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/meta.json -------------------------------------------------------------------------------- /apps/docs/content/preset/next.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/next.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/next.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/qwik.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/qwik.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/react.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/react.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/remix.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/remix.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/solid.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/solid.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/svelte.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/svelte.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/preset/vue.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/preset/vue.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/meta.json -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v5.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v5.tr.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.cn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.cn.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.da.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.da.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.de.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.de.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.es.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.es.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.fi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.fi.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.fr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.fr.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.ga.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.ga.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.hu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.hu.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.id.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.it.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.it.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.jp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.jp.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.nl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.nl.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.no.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.no.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.pt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.pt.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.ro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.ro.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.sl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.sl.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.sr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.sr.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.sv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.sv.mdx -------------------------------------------------------------------------------- /apps/docs/content/upgrade/v6.tr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/content/upgrade/v6.tr.mdx -------------------------------------------------------------------------------- /apps/docs/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/env.ts -------------------------------------------------------------------------------- /apps/docs/hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/hooks/use-mobile.ts -------------------------------------------------------------------------------- /apps/docs/lib/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/lib/i18n.ts -------------------------------------------------------------------------------- /apps/docs/lib/rules.ts: -------------------------------------------------------------------------------- 1 | ../../../packages/cli/src/agents/rules.ts -------------------------------------------------------------------------------- /apps/docs/lib/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/lib/source.ts -------------------------------------------------------------------------------- /apps/docs/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/lib/utils.ts -------------------------------------------------------------------------------- /apps/docs/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/mdx-components.tsx -------------------------------------------------------------------------------- /apps/docs/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/next-env.d.ts -------------------------------------------------------------------------------- /apps/docs/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/next.config.ts -------------------------------------------------------------------------------- /apps/docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/package.json -------------------------------------------------------------------------------- /apps/docs/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/postcss.config.mjs -------------------------------------------------------------------------------- /apps/docs/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/proxy.ts -------------------------------------------------------------------------------- /apps/docs/public/coderabbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/public/coderabbit.png -------------------------------------------------------------------------------- /apps/docs/public/llms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/public/llms.txt -------------------------------------------------------------------------------- /apps/docs/scripts/translate-docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/scripts/translate-docs.ts -------------------------------------------------------------------------------- /apps/docs/skip-ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/skip-ci.js -------------------------------------------------------------------------------- /apps/docs/source.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/source.config.ts -------------------------------------------------------------------------------- /apps/docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/tsconfig.json -------------------------------------------------------------------------------- /apps/docs/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/apps/docs/vercel.json -------------------------------------------------------------------------------- /biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/biome.jsonc -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/bun.lock -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/license.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/package.json -------------------------------------------------------------------------------- /packages/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/CHANGELOG.md -------------------------------------------------------------------------------- /packages/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/README.md -------------------------------------------------------------------------------- /packages/cli/__tests__/agents.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/__tests__/agents.test.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/biome.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/__tests__/biome.test.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/check.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/__tests__/check.test.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/doctor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/__tests__/doctor.test.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/eslint.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/__tests__/eslint.test.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/fix.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/__tests__/fix.test.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/hooks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/__tests__/hooks.test.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/husky.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/__tests__/husky.test.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/__tests__/index.test.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/initialize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/__tests__/initialize.test.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/lefthook.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/__tests__/lefthook.test.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/lint-staged.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/__tests__/lint-staged.test.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/prettier.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/__tests__/prettier.test.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/tsconfig.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/__tests__/tsconfig.test.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/__tests__/utils.test.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/vscode.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/__tests__/vscode.test.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/zed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/__tests__/zed.test.ts -------------------------------------------------------------------------------- /packages/cli/config/angular/biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/config/angular/biome.jsonc -------------------------------------------------------------------------------- /packages/cli/config/astro/biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/config/astro/biome.jsonc -------------------------------------------------------------------------------- /packages/cli/config/core/biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/config/core/biome.jsonc -------------------------------------------------------------------------------- /packages/cli/config/next/biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/config/next/biome.jsonc -------------------------------------------------------------------------------- /packages/cli/config/qwik/biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/config/qwik/biome.jsonc -------------------------------------------------------------------------------- /packages/cli/config/react/biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/config/react/biome.jsonc -------------------------------------------------------------------------------- /packages/cli/config/remix/biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/config/remix/biome.jsonc -------------------------------------------------------------------------------- /packages/cli/config/solid/biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/config/solid/biome.jsonc -------------------------------------------------------------------------------- /packages/cli/config/svelte/biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/config/svelte/biome.jsonc -------------------------------------------------------------------------------- /packages/cli/config/vue/biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/config/vue/biome.jsonc -------------------------------------------------------------------------------- /packages/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/package.json -------------------------------------------------------------------------------- /packages/cli/src/agents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/agents/index.ts -------------------------------------------------------------------------------- /packages/cli/src/agents/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/agents/rules.ts -------------------------------------------------------------------------------- /packages/cli/src/biome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/biome.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/commands/check.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/doctor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/commands/doctor.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/fix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/commands/fix.ts -------------------------------------------------------------------------------- /packages/cli/src/consts/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/consts/options.ts -------------------------------------------------------------------------------- /packages/cli/src/consts/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/consts/rules.ts -------------------------------------------------------------------------------- /packages/cli/src/editor-config/vscode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/editor-config/vscode/index.ts -------------------------------------------------------------------------------- /packages/cli/src/editor-config/zed/default-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/editor-config/zed/default-config.ts -------------------------------------------------------------------------------- /packages/cli/src/editor-config/zed/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/editor-config/zed/index.ts -------------------------------------------------------------------------------- /packages/cli/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/hooks/index.ts -------------------------------------------------------------------------------- /packages/cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/index.ts -------------------------------------------------------------------------------- /packages/cli/src/initialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/initialize.ts -------------------------------------------------------------------------------- /packages/cli/src/integrations/husky.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/integrations/husky.ts -------------------------------------------------------------------------------- /packages/cli/src/integrations/lefthook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/integrations/lefthook.ts -------------------------------------------------------------------------------- /packages/cli/src/integrations/lint-staged.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/integrations/lint-staged.ts -------------------------------------------------------------------------------- /packages/cli/src/migrations/eslint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/migrations/eslint.ts -------------------------------------------------------------------------------- /packages/cli/src/migrations/prettier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/migrations/prettier.ts -------------------------------------------------------------------------------- /packages/cli/src/tsconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/tsconfig.ts -------------------------------------------------------------------------------- /packages/cli/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/src/utils.ts -------------------------------------------------------------------------------- /packages/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/packages/cli/tsup.config.ts -------------------------------------------------------------------------------- /test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/test/test.html -------------------------------------------------------------------------------- /test/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/test/test.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenbleasel/ultracite/HEAD/turbo.json --------------------------------------------------------------------------------