Skip to content

Commit 103a10a

Browse files
authored
Merge pull request #824 from Telegram-Mini-Apps/feature/9-0-storages
chore: lint fix
2 parents 5786d6a + de704f4 commit 103a10a

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

packages/signals/src/batch.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { expect, it, vi } from 'vitest';
22

3-
import { signal } from './signal.js';
4-
import { computed } from './computed.js';
53
import { batch } from './batch.js';
4+
import { computed } from './computed.js';
5+
import { signal } from './signal.js';
66

77
it('should call subscriber only once if several signals were changed', () => {
88
const a = signal(1);

packages/signals/src/signal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { collectSignal } from './computed.js';
21
import { runInBatchMode } from './batch.js';
2+
import { collectSignal } from './computed.js';
33

44
export type SubscribeListenerFn<T> = (current: T, previous: T) => void;
55
export type RemoveListenerFn = () => void;

packages/toolkit/src/casing/deepSnakeToCamelObjKeys.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { snakeToCamelObjKeys } from '@/casing/snakeToCamelObjKeys.js';
21
import type { SnakeToCamelCase } from '@/casing/snakeToCamel.js';
2+
import { snakeToCamelObjKeys } from '@/casing/snakeToCamelObjKeys.js';
33

44
export type DeepConvertSnakeKeysToCamelCase<T> = T extends infer U
55
? U extends object

packages/toolkit/src/monads.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import * as E from 'fp-ts/Either';
2-
import * as TE from 'fp-ts/TaskEither';
3-
import { pipe } from 'fp-ts/function';
41
import {
52
BetterPromise,
63
type BetterPromiseExecutorContext,
74
type BetterPromiseOptions,
85
type TimeoutError,
96
} from 'better-promises';
7+
import * as E from 'fp-ts/Either';
8+
import * as TE from 'fp-ts/TaskEither';
9+
import { pipe } from 'fp-ts/function';
1010

1111
import type { AnyFn } from '@/types/misc.js';
1212

0 commit comments

Comments
 (0)