Skip to content

Commit bfd869b

Browse files
committed
thjs-63: * apply prettier on project
1 parent 1f77be4 commit bfd869b

File tree

18 files changed

+51
-31
lines changed

18 files changed

+51
-31
lines changed

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build
2+
dist

client/src/libs/packages/store/libs/types/store-package.type.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ import {
22
type AnyAction,
33
type configureStore,
44
type MiddlewareArray,
5-
type ThunkMiddleware } from '@reduxjs/toolkit';
5+
type ThunkMiddleware
6+
} from '@reduxjs/toolkit';
67

78
import { type notificationApi } from '~/libs/packages/notification/notification.js';
89
import { type authApi } from '~/packages/auth/auth.js';
@@ -39,4 +40,4 @@ type StorePackage = {
3940
extraArguments: ExtraArguments;
4041
};
4142

42-
export { type ExtraArguments,type StoreInstance, type StorePackage };
43+
export { type ExtraArguments, type StoreInstance, type StorePackage };
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
export {
22
type ExtraArguments,
33
type StoreInstance,
4-
type StorePackage } from './store-package.type.js';
4+
type StorePackage
5+
} from './store-package.type.js';

client/src/libs/types/types.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ export { type AsyncThunkConfig } from './store/store.js';
44
export { type AppDispatch } from './store/store.js';
55
export {
66
type ValidationSchema,
7-
type ValueOf } from 'shared/dist/libs/types/types.js';
7+
type ValueOf
8+
} from 'shared/dist/libs/types/types.js';

client/src/packages/auth/auth.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ export {
1515
type UserLoginRequestDto,
1616
type UserLoginResponseDto,
1717
type UserRegisterRequestDto,
18-
type UserRegisterResponseDto } from './libs/types/types.js';
18+
type UserRegisterResponseDto
19+
} from './libs/types/types.js';

client/src/packages/auth/libs/types/types.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ export {
44
type UserLoginRequestDto,
55
type UserLoginResponseDto,
66
type UserRegisterRequestDto,
7-
type UserRegisterResponseDto } from 'shared/dist/packages/user/user.js';
7+
type UserRegisterResponseDto
8+
} from 'shared/dist/packages/user/user.js';

client/src/packages/comment/comment.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ export { CommentPayloadKey } from './libs/enums/enums.js';
1313
export {
1414
type CommentApi,
1515
type CommentWithUserNestedRelations,
16-
type CreateCommentRequestDto } from './libs/types/types.js';
16+
type CreateCommentRequestDto
17+
} from './libs/types/types.js';

client/src/packages/comment/libs/types/types.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ export {
33
type Comment,
44
type CommentWithUserNestedRelations,
55
type CreateCommentRequestDto,
6-
type GetCommentByIdResponseDto } from 'shared/dist/packages/comment/comment.js';
6+
type GetCommentByIdResponseDto
7+
} from 'shared/dist/packages/comment/comment.js';
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
export { PostPayloadKey, PostsApiPath } from 'shared/dist/packages/post/post.js';
1+
export {
2+
PostPayloadKey,
3+
PostsApiPath
4+
} from 'shared/dist/packages/post/post.js';

client/src/packages/post/libs/types/types.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ export {
88
type GetPostsByFilterResponseDto,
99
type Post,
1010
type PostWithCommentImageUserNestedRelationsWithCount,
11-
type PostWithImageUserNestedRelationsWithCount } from 'shared/dist/packages/post/post.js';
11+
type PostWithImageUserNestedRelationsWithCount
12+
} from 'shared/dist/packages/post/post.js';

0 commit comments

Comments
 (0)