Skip to content

Commit 06daecc

Browse files
chore(deps): update dependency eslint-plugin-simple-import-sort to v13 (#1663)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: trim21 <i@trim21.me>
1 parent 6726b96 commit 06daecc

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

lib/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import { fastifyAltairPlugin } from '@app/lib/graphql/ui.ts';
1111
import * as routes from '@app/routes/index.ts';
1212

1313
import { buildAjvOptions } from './ajv.ts';
14-
import { emptyAuth } from './auth/index.ts';
1514
import * as auth from './auth/index.ts';
15+
import { emptyAuth } from './auth/index.ts';
1616
import config, { testing, VERSION } from './config.ts';
1717
import type { Context } from './graphql/context.ts';
1818
import { resolvers, schema } from './graphql/schema.ts';

lib/services/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { OptionsInit } from 'got';
2-
import { Options } from 'got';
32
import * as got from 'got';
3+
import { Options } from 'got';
44

55
import { HTTPS_PROXY } from '@app/lib/config.ts';
66
import { getProxyAgent } from '@app/lib/utils/proxy.ts';

lib/services/turnstile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { stage, testing } from '@app/lib/config.ts';
21
import config from '@app/lib/config.ts';
2+
import { stage, testing } from '@app/lib/config.ts';
33

44
import { BaseExternalHttpSrv } from './base.ts';
55

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
"eslint-config-prettier": "10.1.8",
111111
"eslint-plugin-erasable-syntax-only": "0.4.0",
112112
"eslint-plugin-promise": "7.2.1",
113-
"eslint-plugin-simple-import-sort": "12.1.1",
113+
"eslint-plugin-simple-import-sort": "13.0.0",
114114
"eslint-plugin-tsdoc": "0.5.2",
115115
"eslint-plugin-unicorn": "64.0.0",
116116
"eslint-plugin-unused-imports": "4.4.1",

pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

routes/hooks/pre-handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import type { FastifyReply, FastifyRequest } from 'fastify';
44
import { db, op, schema } from '@app/drizzle';
55
import * as authCode from '@app/lib/auth/authcode.ts';
66
import type { IAuth } from '@app/lib/auth/index.ts';
7-
import { emptyAuth, NeedLoginError, NotAllowedError } from '@app/lib/auth/index.ts';
87
import * as auth from '@app/lib/auth/index.ts';
8+
import { emptyAuth, NeedLoginError, NotAllowedError } from '@app/lib/auth/index.ts';
99
import * as session from '@app/lib/auth/session.ts';
1010
import { CookieKey, LegacyCookieKey } from '@app/lib/auth/session.ts';
1111
import { TypedCache } from '@app/lib/cache.ts';

0 commit comments

Comments
 (0)