Skip to content

Commit 5ed9416

Browse files
committed
style: apply eslint --fix across the monorepo
Mechanical output of `eslint . --fix` under the new flat config: indentation, import sorting, unused-import removal. No behavior changes.
1 parent c5b7b98 commit 5ed9416

563 files changed

Lines changed: 4345 additions & 4344 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

__fixtures__/output/index.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
import * as pg_catalog from "./schemas/pg_catalog";
1+
import * as pg_catalog from './schemas/pg_catalog';
22
export { pg_catalog };
3-
import * as information_schema from "./schemas/information_schema";
3+
import * as information_schema from './schemas/information_schema';
44
export { information_schema };
5-
import * as pgpm_migrate from "./schemas/pgpm_migrate";
5+
import * as pgpm_migrate from './schemas/pgpm_migrate';
66
export { pgpm_migrate };
7-
import * as app_jobs from "./schemas/app_jobs";
7+
import * as app_jobs from './schemas/app_jobs';
88
export { app_jobs };
9-
import * as inflection from "./schemas/inflection";
9+
import * as inflection from './schemas/inflection';
1010
export { inflection };
11-
import * as metaschema_public from "./schemas/metaschema_public";
11+
import * as metaschema_public from './schemas/metaschema_public';
1212
export { metaschema_public };
13-
import * as constructive_catalog_public from "./schemas/constructive_catalog_public";
13+
import * as constructive_catalog_public from './schemas/constructive_catalog_public';
1414
export { constructive_catalog_public };
15-
import * as constructive_routing_public from "./schemas/constructive_routing_public";
15+
import * as constructive_routing_public from './schemas/constructive_routing_public';
1616
export { constructive_routing_public };
17-
import * as constructive_apps_public from "./schemas/constructive_apps_public";
17+
import * as constructive_apps_public from './schemas/constructive_apps_public';
1818
export { constructive_apps_public };

__fixtures__/output/schemas/app_jobs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Timestamp, UUID } from "./_common";
1+
import { Timestamp, UUID } from './_common';
22
export interface JobQueues {
33
queue_name: string;
44
job_count: number;

__fixtures__/output/schemas/constructive_apps_public.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { UUID, Timestamp } from "./_common";
1+
import { Timestamp,UUID } from './_common';
22
export interface AppComponents {
33
id: UUID;
44
created_at: Timestamp | null;

__fixtures__/output/schemas/constructive_catalog_public.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { UUID, Timestamp } from "./_common";
1+
import { Timestamp,UUID } from './_common';
22
export interface Apis {
33
id: UUID;
44
created_at: Timestamp | null;

__fixtures__/output/schemas/constructive_routing_public.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { UUID, Timestamp } from "./_common";
1+
import { Timestamp,UUID } from './_common';
22
export interface ApiModules {
33
id: UUID;
44
created_at: Timestamp | null;

__fixtures__/output/schemas/inflection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { UUID } from "./_common";
1+
import { UUID } from './_common';
22
export interface InflectionRules {
33
id: UUID;
44
type: string | null;

__fixtures__/output/schemas/metaschema_public.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { UUID, Timestamp } from "./_common";
1+
import { Timestamp,UUID } from './_common';
22
export interface CheckConstraint {
33
id: UUID;
44
database_id: UUID;

__fixtures__/output/schemas/pg_catalog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Timestamp } from "./_common";
1+
import { Timestamp } from './_common';
22
export interface PgAggregate {
33
aggfnoid: any;
44
aggkind: any;

__fixtures__/output/schemas/pgpm_migrate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Timestamp } from "./_common";
1+
import { Timestamp } from './_common';
22
export interface Changes {
33
change_id: string;
44
change_name: string;

__fixtures__/sqitch/constructive/packages/utilities/test/utils/index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ const prefix = 'testing-db';
77
export const getConnection = async () => {
88
const options = process.env.FAST_TEST
99
? {
10-
hot: true,
11-
prefix
12-
}
10+
hot: true,
11+
prefix
12+
}
1313
: {
14-
template: process.env.PGTEMPLATE_DATABASE,
15-
prefix
16-
};
14+
template: process.env.PGTEMPLATE_DATABASE,
15+
prefix
16+
};
1717
return await testing.getConnection(options);
1818
};
1919

0 commit comments

Comments
 (0)