You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(partners): deepen CodeRabbit page SEO content + reframe partnership
- Reframe the value section from "why teams choose CodeRabbit" to
"CodeRabbit is all-in on the TanStack community" to position TanStack
as the sought-after partner.
- Add "What CodeRabbit catches in a TanStack PR" section (6 concrete,
framework-specific examples) for AI-search and long-tail coverage.
- Add "How CodeRabbit compares" table (vs manual review vs linters).
- Expand FAQ 6 -> 12 (data privacy/training, language support, monorepo
path scoping, test/docstring generation, bot chat, Jira/Linear/MCP);
FAQPage JSON-LD scales automatically.
All new claims verified against coderabbit.ai and its docs.
q: 'How is this different from GitHub Copilot or a plain linter?',
266
345
a: "CodeRabbit reviews the whole change with reasoning, not just the line under your cursor. It runs 40+ scanners for you, explains findings in context, offers one-click fixes, learns your standards, and gates merges on custom checks. As one CTO put it, the differentiator isn't generating code — it's governing it.",
267
346
},
347
+
{
348
+
q: 'Does CodeRabbit train on my code?',
349
+
a: 'No. CodeRabbit never uses customer code to train models, whether data retention is enabled or not. Your code is shared with its LLM providers only to generate a review, with data isolation for proprietary code, and Enterprise self-hosting lets you opt out of all retention entirely.',
350
+
},
351
+
{
352
+
q: 'What languages does CodeRabbit support?',
353
+
a: 'CodeRabbit is language-agnostic and reviews all major programming languages, with depth varying by how common the language is. For TanStack teams that means full TypeScript, JavaScript, and TSX/JSX coverage alongside whatever backend language shares the repo.',
354
+
},
355
+
{
356
+
q: 'Can I scope CodeRabbit to specific folders or a monorepo package?',
357
+
a: 'Yes. A .coderabbit.yaml file supports path filters and path-specific instructions, so you can focus reviews on the packages that matter and give per-directory guidance — handy in the monorepos many TanStack projects live in.',
358
+
},
359
+
{
360
+
q: 'Does CodeRabbit generate tests and docstrings?',
361
+
a: 'Yes. It can check test coverage and generate the missing unit tests, and it can create docstrings for changed files — automatically or on request in a pull request comment.',
362
+
},
363
+
{
364
+
q: 'Can I chat with CodeRabbit or ask it to make changes?',
365
+
a: 'Yes. You can chat with the CodeRabbit bot in any pull request, ask follow-up questions, and apply fixes with one-click commits or the "Fix with AI" button for the harder ones.',
366
+
},
367
+
{
368
+
q: 'Does CodeRabbit connect to Jira, Linear, or other tools?',
369
+
a: 'Yes. Pro and above integrate Jira and Linear, pull in linked issues and web context, and connect to MCP servers so reviews can reason about work that lives outside the diff.',
370
+
},
268
371
]
269
372
270
373
constPAGE_TITLE='CodeRabbit for TanStack — AI Code Review, Gold Partner'
@@ -325,6 +428,23 @@ function CheckBadge() {
325
428
)
326
429
}
327
430
431
+
functionComparisonCell({ value }: {value: ComparisonValue}){
0 commit comments