Skip to content

Commit 91fd5b2

Browse files
committed
Linter
1 parent 2225364 commit 91fd5b2

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script lang="ts">
2-
export let value: unknown;
2+
export let value: unknown;
33
</script>
44

55
<input bind:value />
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
export const prerender = true;
2-
export const ssr = false;
2+
export const ssr = false;

src/routes/(v2)/v2/issue-484/schemas.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ import { z } from 'zod';
22
import type { JSONSchema } from '$lib/index.js';
33

44
export const loginZodSchema = z.object({
5-
name: z.string().min(5).default('Superform'),
6-
email: z.string().email()
5+
name: z.string().min(5).default('Superform'),
6+
email: z.string().email()
77
});
88

99
export const loginJSONSchema = {
10-
type: 'object',
11-
properties: {
12-
name: { type: 'string', minLength: 5, default: 'Superform' },
13-
email: { type: 'string', format: 'email' }
14-
},
15-
required: ['name', 'email'],
16-
additionalProperties: false,
17-
$schema: 'http://json-schema.org/draft-07/schema#'
10+
type: 'object',
11+
properties: {
12+
name: { type: 'string', minLength: 5, default: 'Superform' },
13+
email: { type: 'string', format: 'email' }
14+
},
15+
required: ['name', 'email'],
16+
additionalProperties: false,
17+
$schema: 'http://json-schema.org/draft-07/schema#'
1818
} as const satisfies JSONSchema;

0 commit comments

Comments
 (0)