Skip to content

Commit 586b985

Browse files
committed
chore: add generated types to ignore list
1 parent eccb4ff commit 586b985

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"enabled": true
55
},
66
"files": {
7-
"ignore": ["worker-configuration.d.ts", "types/worker.d.ts"]
7+
"ignore": ["worker-configuration.d.ts", "types/workerd.d.ts"]
88
},
99
"vcs": {
1010
"enabled": true,

types/workerd.d.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ declare const performance: Performance;
376376
declare const Cloudflare: Cloudflare;
377377
declare const origin: string;
378378
declare const navigator: Navigator;
379-
type TestController = {}
379+
type TestController = {};
380380
interface ExecutionContext {
381381
waitUntil(promise: Promise<any>): void;
382382
passThroughOnException(): void;
@@ -2272,7 +2272,7 @@ interface TraceItem {
22722272
interface TraceItemAlarmEventInfo {
22732273
readonly scheduledTime: Date;
22742274
}
2275-
type TraceItemCustomEventInfo = {}
2275+
type TraceItemCustomEventInfo = {};
22762276
interface TraceItemScheduledEventInfo {
22772277
readonly scheduledTime: number;
22782278
readonly cron: string;
@@ -2794,8 +2794,8 @@ interface GPUBufferBindingLayout {
27942794
hasDynamicOffset?: boolean;
27952795
minBindingSize?: number | bigint;
27962796
}
2797-
type GPUBindGroupLayout = {}
2798-
type GPUBindGroup = {}
2797+
type GPUBindGroupLayout = {};
2798+
type GPUBindGroup = {};
27992799
interface GPUBindGroupDescriptor {
28002800
label?: string;
28012801
layout: GPUBindGroupLayout;
@@ -2810,7 +2810,7 @@ interface GPUBufferBinding {
28102810
offset?: number | bigint;
28112811
size?: number | bigint;
28122812
}
2813-
type GPUSampler = {}
2813+
type GPUSampler = {};
28142814
interface GPUSamplerDescriptor {
28152815
label?: string;
28162816
addressModeU?: string;
@@ -2831,7 +2831,7 @@ interface GPUShaderModuleDescriptor {
28312831
label?: string;
28322832
code: string;
28332833
}
2834-
type GPUPipelineLayout = {}
2834+
type GPUPipelineLayout = {};
28352835
interface GPUPipelineLayoutDescriptor {
28362836
label?: string;
28372837
bindGroupLayouts: GPUBindGroupLayout[];
@@ -2899,7 +2899,7 @@ interface GPUComputePassDescriptor {
28992899
label?: string;
29002900
timestampWrites?: GPUComputePassTimestampWrites;
29012901
}
2902-
type GPUQuerySet = {}
2902+
type GPUQuerySet = {};
29032903
interface GPUQuerySetDescriptor {
29042904
label?: string;
29052905
}
@@ -2911,7 +2911,7 @@ interface GPUComputePassTimestampWrites {
29112911
interface GPUCommandBufferDescriptor {
29122912
label?: string;
29132913
}
2914-
type GPUCommandBuffer = {}
2914+
type GPUCommandBuffer = {};
29152915
interface GPUQueue {
29162916
submit(commandBuffers: GPUCommandBuffer[]): void;
29172917
writeBuffer(
@@ -3027,7 +3027,7 @@ interface GPUTexture {
30273027
get format(): string;
30283028
get usage(): number;
30293029
}
3030-
type GPUTextureView = {}
3030+
type GPUTextureView = {};
30313031
interface GPUTextureViewDescriptor {
30323032
label: string;
30333033
format: string;
@@ -3045,7 +3045,7 @@ declare abstract class GPUColorWrite {
30453045
static readonly ALPHA: number;
30463046
static readonly ALL: number;
30473047
}
3048-
type GPURenderPipeline = {}
3048+
type GPURenderPipeline = {};
30493049
interface GPURenderPipelineDescriptor {
30503050
label?: string;
30513051
layout: string | GPUPipelineLayout;
@@ -5140,7 +5140,7 @@ declare abstract class D1PreparedStatement {
51405140
// but this will ensure type checking on older versions still passes.
51415141
// TypeScript's interface merging will ensure our empty interface is effectively
51425142
// ignored when `Disposable` is included in the standard lib.
5143-
type Disposable = {}
5143+
type Disposable = {};
51445144
/**
51455145
* An email message that can be sent from a Worker.
51465146
*/

0 commit comments

Comments
 (0)