-
Notifications
You must be signed in to change notification settings - Fork 3
Refactor: DayCell 컴포넌트 분리 #550
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
acea1f5
(#549) refactor: useDayCellstyle과 useReservationCounts 분리
Yongmin0423 826a80f
(#549) refactor: useReservationMutations, useReservationQueries 분리
Yongmin0423 0b5a063
(#549) refactor: daycell 컴포넌트 분리
Yongmin0423 f03b985
(#549) refactor: 예약 현황 페이지 select 스켈레톤 삭제
Yongmin0423 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -37,5 +37,6 @@ | |
| "YONGMIN", | ||
| "JAEHYUN", | ||
| "Kakao" | ||
| ] | ||
| ], | ||
| "claudeCodeChat.permissions.yoloMode": false | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
확인 필요:
claudeCodeChat.permissions.yoloMode설정 키의 유효성과 팀 합의워크스페이스 설정에 확장 전용 키를 추가하면, 해당 확장이 미설치된 환경에서 “Unknown configuration setting” 경고가 나타날 수 있습니다. 또한 키 네임스페이스(
claudeCodeChat)와 설정명(permissions.yoloMode)이 실제 확장 스키마와 일치하는지 확인이 필요합니다. 팀 차원의 표준이라면:.vscode/extensions.json에 해당 확장을 추천 목록으로 추가를 권장합니다. 개인 선호라면 User Settings로 이동하는 편이 낫습니다.
아래 두 가지 중 선택하세요.
제거를 선택할 경우 제안 diff:
키 유효성 검증을 위해 웹 검색이 필요합니다. 아래 쿼리를 실행해 최신 문서를 확인해 주세요. 필요하면 제가 결과를 토대로 맞는 키로 수정 PR 제안 드리겠습니다.
🌐 Web query:
💡 Result:
The canonical setting to enable "YOLO mode"—which skips all permission prompts and allows Claude Code to execute actions without interactive approval—is configured using the dangerously skip permissions flag. This is generally set at the CLI level, but can also be passed as a configuration option. The canonical key for this for VS Code (and related environments) is:
dangerouslySkipPermissions
Canonical Setting ID
"dangerouslySkipPermissions"Example Usage in
settings.jsonTo enable YOLO mode for Claude Code in your VS Code
settings.json, add:{ "claudeCode.dangerouslySkipPermissions": true }Context and Details
--dangerously-skip-permissions, and the corresponding config key in most environments isdangerouslySkipPermissions[6][2].claudeCode) insettings.json.Other Relevant Configuration Info
rm, as discussed in user forums)[8]."yoloMode"; the canonical flag is always centered on"dangerouslySkipPermissions"or--dangerously-skip-permissions[6][2][4].Summary of Canonical Usage
"claudeCode.dangerouslySkipPermissions": true--dangerously-skip-permissionsclaude --dangerously-skip-permissionsAlways use this setting with extreme caution and preferably only in isolated/test environments[6][2].
Citations:
조치 필요: 잘못된 설정 키 교체 또는 제거 권장
간단 요약: 제공된 문서 확인 결과 "claudeCodeChat.permissions.yoloMode"는 문서화된 설정이 아니며, YOLO(권한 프롬프트 무시) 관련 공식 키는 "claudeCode.dangerouslySkipPermissions"입니다. 이 옵션은 보안/데이터 손실 위험이 크므로 팀 합의·문서화가 필요합니다.
주의할 위치:
권장 조치 (선택 중 택1):
제안 diff (교체 예: 기본값 false 유지)
📝 Committable suggestion
🤖 Prompt for AI Agents