Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"prettier.printWidth": 100,
"prettier.requireConfig": true,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

혹시 이값 true로 수정하신 이유가 있을까요 ?

Copy link
Author

@khwww khwww Jan 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

개인의 전역 설정이 prettier에 적용되는 경우를 방지하기 위해서
.prettier.json 설정을 기준으로 일관되게 포맷되도록 했습니다!
(저게 충돌원인은 아닌 것 같아요)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

오 좋네요~!!
아마 프리티어.json이 있어서 해당 옵션이 쓰일일은 없겠지만 명시적으로 개인설정이 적용되는걸 막으면 좋겠네요

"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
Expand Down
3 changes: 2 additions & 1 deletion src/components/button/BlockBtn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ const blockBtnVariants = cva("h-13 w-full min-w-80 max-w-screen-sm rounded-lg fl
});

export interface BlockBtnProps
extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof blockBtnVariants> {
extends React.ButtonHTMLAttributes<HTMLButtonElement>,
VariantProps<typeof blockBtnVariants> {
onClick: () => void;
children: React.ReactNode;
}
Expand Down
3 changes: 2 additions & 1 deletion src/components/button/RoundBtn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ const roundBtnVariants = cva("h-[2.375rem] w-[6.375rem] rounded-3xl px-4 py-2.5
});

export interface RoundBtnProps
extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof roundBtnVariants> {
extends React.ButtonHTMLAttributes<HTMLButtonElement>,
VariantProps<typeof roundBtnVariants> {
onClick?: () => void;
children: React.ReactNode;
}
Expand Down