Skip to content
Merged
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
16 changes: 16 additions & 0 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
language: "ko-KR"
ignored_branch: ""
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue

알 수 없는 설정 키 ("ignored_branch")
스키마 정의에 ignored_branch 필드는 없습니다. 이 설정이 유효한지 확인 후 불필요하면 제거하거나 올바른 위치로 옮겨주세요.

🤖 Prompt for AI Agents
In the .coderabbit.yaml file at line 3, the key "ignored_branch" is not
recognized in the schema. Verify if this setting is necessary; if it is not
valid or used, remove the "ignored_branch" line entirely. If it is required,
relocate it to the correct section according to the schema documentation.

early_access: false
reviews:
profile: "chill"
request_changes_workflow: false
high_level_summary: true
poem: true
review_status: true
collapse_walkthrough: false
auto_review:
enabled: true
drafts: false
chat:
auto_reply: true
1 change: 1 addition & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npx commitlint --edit "$1"
Copy link

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

Husky 훅 스크립트에 쉐뱅 추가 권장
Git hook 스크립트는 쉘 환경을 명시하기 위해 #!/usr/bin/env bash 를 최상단에 추가하는 것이 좋습니다.

+#!/usr/bin/env bash
 npx commitlint --edit "$1"
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
npx commitlint --edit "$1"
#!/usr/bin/env bash
npx commitlint --edit "$1"
🤖 Prompt for AI Agents
In .husky/commit-msg at line 1, the script lacks a shebang line specifying the
shell environment. Add `#!/usr/bin/env bash` as the very first line of the file
to explicitly define the shell interpreter for the Git hook script.

4 changes: 4 additions & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
set -e
npx expo-doctor
npm run lint
npx tsc --noEmit
Comment on lines +1 to +4
Copy link

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

Husky pre-push 스크립트에 쉐뱅 추가 권장
Git hook 스크립트는 쉘 환경을 명시하기 위해 #!/usr/bin/env bash 를 최상단에 추가하는 것이 좋습니다.

+#!/usr/bin/env bash
 set -e
 npx expo-doctor
 npm run lint
 npx tsc --noEmit
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
set -e
npx expo-doctor
npm run lint
npx tsc --noEmit
#!/usr/bin/env bash
set -e
npx expo-doctor
npm run lint
npx tsc --noEmit
🤖 Prompt for AI Agents
In the .husky/pre-push file at lines 1 to 4, the script lacks a shebang line
specifying the shell environment. Add the line #!/usr/bin/env bash at the very
top of the file to explicitly define the script interpreter as bash.

4 changes: 4 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// commitlint.config.js
module.exports = {
extends: ["@commitlint/config-conventional"],
};
Loading