Skip to content

Commit 94626d3

Browse files
committed
eslint
1 parent 5151b11 commit 94626d3

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

src/schema-accessor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export class InternalSchemaBasedAccessor implements SchemaAccessor {
2929
this.internalSchema = internalSchema;
3030
}
3131

32-
async getInternalSchema(options?: Options): Promise<InternalSchema> {
32+
async getInternalSchema(): Promise<InternalSchema> {
3333
return this.internalSchema;
3434
}
3535

src/schema-convertors/internalToExpanded.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { InternalSchema } from '..';
22
import { ExpandedJSONSchema } from '../types';
33

44
export default function internalSchemaToExpanded(
5+
/* eslint @typescript-eslint/no-unused-vars: 0 */
56
internalSchema: InternalSchema,
67
options: {
78
signal?: AbortSignal

src/schema-convertors/internalToStandard.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { InternalSchema } from '..';
22
import { StandardJSONSchema } from '../types';
33

44
export default function internalSchemaToStandard(
5+
/* eslint @typescript-eslint/no-unused-vars: 0 */
56
internalSchema: InternalSchema,
67
options: {
78
signal?: AbortSignal

0 commit comments

Comments
 (0)