Skip to content

Commit

Permalink
eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
paula-stacho committed Jan 22, 2025
1 parent 5151b11 commit a035b4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/schema-accessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class InternalSchemaBasedAccessor implements SchemaAccessor {
this.internalSchema = internalSchema;
}

async getInternalSchema(options?: Options): Promise<InternalSchema> {
async getInternalSchema(): Promise<InternalSchema> {
return this.internalSchema;
}

Expand Down
1 change: 1 addition & 0 deletions src/schema-convertors/internalToStandard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { InternalSchema } from '..';
import { StandardJSONSchema } from '../types';

export default function internalSchemaToStandard(
/* eslint @typescript-eslint/no-unused-vars: 0 */
internalSchema: InternalSchema,
options: {
signal?: AbortSignal
Expand Down

0 comments on commit a035b4b

Please sign in to comment.