Skip to content

Commit

Permalink
ci: Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot committed Sep 30, 2024
1 parent af76ac1 commit 0a3bb00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/code-sample/java.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { camelCase, pascalCase } from 'change-case'

import type { Json, NonNullJson } from 'lib/json.js'

import type { CodeSampleDefinition, Context } from './schema.js'
import { createJsonResponse } from './json.js'
import type { CodeSampleDefinition, Context } from './schema.js'

export const createJavaRequest = (
{ request }: CodeSampleDefinition,
Expand Down
2 changes: 1 addition & 1 deletion src/lib/code-sample/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ import { JsonSchema } from 'lib/json.js'

import { formatCodeRecords } from './format.js'
import { createGoRequest, createGoResponse } from './go.js'
import { createJavaRequest, createJavaResponse } from './java.js'
import {
createJavascriptRequest,
createJavascriptResponse,
} from './javascript.js'
import { createPhpRequest, createPhpResponse } from './php.js'
import { createPythonRequest, createPythonResponse } from './python.js'
import { createRubyRequest, createRubyResponse } from './ruby.js'
import { createJavaRequest, createJavaResponse } from './java.js'

export const CodeSampleDefinitionSchema = z.object({
title: z.string().trim().min(1),
Expand Down

0 comments on commit 0a3bb00

Please sign in to comment.