Skip to content

docs: fix table formatting #774

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 14 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,25 +34,25 @@ Install your preferred validation library alongside `@hookform/resolvers`.

| resolver | Infer values <br /> from schema | [criteriaMode](https://react-hook-form.com/docs/useform#criteriaMode) |
|---|---|---|
| AJV | ❌ | `firstError | all` |
| AJV | ❌ | `firstError \| all` |
| Arktype | ✅ | `firstError` |
| class-validator | ✅ | `firstError | all` |
| class-validator | ✅ | `firstError \| all` |
| computed-types | ✅ | `firstError` |
| Effect | ✅ | `firstError | all` |
| Effect | ✅ | `firstError \| all` |
| fluentvalidation-ts | ❌ | `firstError` |
| io-ts | ✅ | `firstError` |
| joi | ❌ | `firstError | all` |
| joi | ❌ | `firstError \| all` |
| Nope | ❌ | `firstError` |
| Standard Schema | ✅ | `firstError | all` |
| Standard Schema | ✅ | `firstError \| all` |
| Superstruct | ✅ | `firstError` |
| typanion | ✅ | `firstError` |
| typebox | ✅ | `firstError | all` |
| typeschema | ❌ | `firstError | all` |
| valibot | ✅ | `firstError | all` |
| vest | ❌ | `firstError | all` |
| vine | ✅ | `firstError | all` |
| yup | ✅ | `firstError | all` |
| zod | ✅ | `firstError | all` |
| typebox | ✅ | `firstError \| all` |
| typeschema | ❌ | `firstError \| all` |
| valibot | ✅ | `firstError \| all` |
| vest | ❌ | `firstError \| all` |
| vine | ✅ | `firstError \| all` |
| yup | ✅ | `firstError \| all` |
| zod | ✅ | `firstError \| all` |
</details>

## TypeScript
Expand Down Expand Up @@ -91,7 +91,9 @@ useForm<z.input<typeof schema>, any, z.output<typeof schema>>({

### Supported resolvers

- [React Hook Form Resolvers](#react-hook-form-resolvers)
- [Install](#install)
- [TypeScript](#typescript)
- [Links](#links)
- [Supported resolvers](#supported-resolvers)
- [API](#api)
Expand All @@ -118,7 +120,6 @@ useForm<z.input<typeof schema>, any, z.output<typeof schema>>({
- [fluentvalidation-ts](#fluentvalidation-ts)
- [standard-schema](#standard-schema)
- [Backers](#backers)
- [Sponsors](#sponsors)
- [Contributors](#contributors)

## API
Expand Down