-
Notifications
You must be signed in to change notification settings - Fork 0
기본 이메일 주소 인증 여부를 비인증으로 설정 #112
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
5 commits
Select commit
Hold shift + click to select a range
1ea8d79
feat: 이메일 주소 인증 여부 `비인증`을 기본으로 설정
patulus 9dca5f7
feat: 이메일 주소 인증 시 그 여부를 `인증`으로 변경하도록 설정
patulus ba52a92
chore: CodeRabbit 설정 변경
patulus 07db1c7
feat: 이미 인증된 경우 발송하지 않도록 수정
patulus 8e79c07
Merge branch 'dev' into feat/verify-email
patulus 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 |
|---|---|---|
| @@ -1,108 +1,191 @@ | ||
| # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json | ||
| language: ko-KR | ||
|
|
||
| tone_instructions: "Give clear feedback in a constructive tone focused on actionable improvements; write comments in formal polite Korean." | ||
| early_access: true | ||
| enable_free_tier: true | ||
|
|
||
| reviews: | ||
| profile: chill | ||
| request_changes_workflow: true | ||
|
|
||
| high_level_summary: true | ||
| high_level_summary_placeholder: '@coderabbitai summary' | ||
| auto_title_placeholder: '@coderabbitai' | ||
| high_level_summary_placeholder: "@coderabbitai summary" | ||
| high_level_summary_in_walkthrough: true | ||
| sequence_diagrams: true | ||
| suggested_labels: false | ||
| auto_apply_labels: false | ||
| assess_linked_issues: false | ||
| related_issues: false | ||
| related_prs: false | ||
| suggested_reviewers: false | ||
| auto_assign_reviewers: false | ||
| poem: false | ||
|
|
||
| auto_title_placeholder: "@coderabbitai" | ||
| review_status: true | ||
| commit_status: true | ||
| fail_commit_status: false | ||
| collapse_walkthrough: false | ||
| changed_files_summary: true | ||
|
|
||
| labeling_instructions: [ ] | ||
|
|
||
| path_filters: | ||
| - "**/*" | ||
| - "**/gen/**" | ||
| - "!**/test/**/gen/**" | ||
| - "!**/.git/**" | ||
| - "!**/target/**" | ||
| - "!**/build/**" | ||
| - "!**/.gradle/**" | ||
| - "!**/node_modules/**" | ||
| - "!**/dist/**" | ||
| - "!**/out/**" | ||
| - "!**/.idea/**" | ||
| - "!**/.vscode/**" | ||
| - "!**/swagger.json" | ||
| - "!**/README.md" | ||
|
|
||
| path_instructions: | ||
| # — SQL files (existing) | ||
| - path: "**/*" | ||
| instructions: | | ||
| - For every finding, include evidence: file path(s), line number(s), rule names (e.g., Checkstyle), and links to credible docs when relevant. | ||
| - Wrap any tokens starting with '@' (e.g., `@JoinColumn`) in backticks in PR comments. | ||
|
|
||
| - path: "**/*.sql" | ||
| instructions: > | ||
| As a team convention, we do not specify FK constraints. Please avoid suggesting adding FK constraints in code reviews. | ||
| Although this is a TypeScript file, DDL statements modifying table structures are embedded as strings. | ||
| For columns used as primary keys (PK) or foreign keys (FK), the column type must be specified as "bigint". | ||
| If a column name is "id" or ends with "_id", verify that its SQL type is "bigint"; otherwise, emit a high-severity warning prefixed with “🚨🚨🚨”. | ||
| instructions: | | ||
| - As a team convention, we do not specify FK constraints. Please avoid suggesting adding FK constraints in code reviews. | ||
| - For columns used as primary keys (PK) or foreign keys (FK), the column type must be specified as "bigint". | ||
| - If a column name is "id" or ends with "_id", verify that its SQL type is "bigint"; otherwise, emit a high-severity warning prefixed with "🚨🚨🚨". | ||
|
|
||
| - path: "**/*.java" | ||
| instructions: > | ||
| This project follows key rules from the NAVER Campus Hackday Java Coding Conventions (partial summary below; see full spec for details). | ||
| * Indentation: use spaces (no tabs), tab width = 4 spaces. Files must end with Unix LF newline. | ||
| * Line length: maximum 120 characters. | ||
| * Imports: single-class imports only, allow wildcard for static imports, group imports with blank lines between sections. | ||
| * Assignment operators (`=`, `+=`, `-=`, etc.): always have one space before and after; when breaking lines, the operator must start the next line (Binary expressions: operation sign on next line). | ||
| * Lambda expressions: omit parentheses for a single parameter; surround `->` with spaces (`param -> expression`); use braces and explicit `return` for multi-statement bodies; choose short, clear parameter names to keep intent visible. | ||
| For the complete set of conventions and detailed examples, please refer to the full spec at `https://naver.github.io/hackday-conventions-java/`. | ||
| instructions: | | ||
| - Review against Java 21. | ||
| - Indentation: use spaces (no tabs), tab width = 4 spaces; files must end with Unix LF newline. (Team adaptation) | ||
| - Maximum line length: 120 characters. | ||
| - Imports: single-class imports only; allow wildcard for static imports; group imports with blank lines between sections. | ||
| - Assignment operators (`=`, `+=`, `-=`, etc.): always one space before and after; on line breaks, place the operator at the start of the next line. | ||
| - Lambda expressions: omit parentheses for a single parameter; surround `->` with spaces (`param -> expression`); use braces and explicit `return` for multi-statement bodies; choose short, clear parameter names. | ||
| - In multi-line expressions, place operators and ternary separators at end-of-line. | ||
| - Prefer Java 21 standard APIs over Guava. | ||
| - Do not annotate immutable local variables with `final` unless required for an inner class. | ||
| - Allow the `var` keyword when the value is a cast `null`. | ||
| - For the complete NAVER Campus Hackday conventions, see: https://naver.github.io/hackday-conventions-java/ | ||
|
|
||
| - path: "**/main/java/**/*.java" | ||
| instructions: | | ||
| - This project is mature and must preserve a stable, backward-compatible public Java API. | ||
| - In the "Changes" section, list up to 25 changes to the public Java API that could affect end users; if none, explicitly state "No public Java API changes in this PR." | ||
| - Define the public Java API as public/protected methods on public classes plus `module-info.java`. | ||
| - Derive the list by deeply analyzing code flow, including through private methods and calls to Java 21 and Guava. | ||
| - Report: | ||
| * New or removed public API methods | ||
| * Changes to return types or parameter types | ||
| * Behavioral changes that may impact consumers | ||
| - Use `System.out.println` instead of logging frameworks. | ||
| - For performance reasons, the project prefers for-loops; do not suggest converting between loops and streams. | ||
|
|
||
| - path: "**/test/java/**/*.java" | ||
| instructions: | | ||
| - Prioritize correctness of assertions, coverage of edge cases, and clear test naming/documentation. | ||
| - Be lenient on style and minor optimizations in tests. | ||
|
|
||
| abort_on_close: true | ||
| disable_cache: false | ||
|
|
||
| auto_review: | ||
| enabled: true | ||
| auto_incremental_review: true | ||
| ignore_title_keywords: [] | ||
| labels: [] | ||
| ignore_title_keywords: [ ] | ||
| labels: [ ] | ||
| drafts: false | ||
| base_branches: [] | ||
| base_branches: [ ] | ||
|
|
||
| tools: | ||
| shellcheck: | ||
| enabled: true | ||
| ruff: | ||
| enabled: true | ||
| markdownlint: | ||
| enabled: true | ||
| github-checks: | ||
| enabled: true | ||
| timeout_ms: 90000 | ||
| languagetool: | ||
| enabled: true | ||
| disabled_rules: | ||
| - EN_UNPAIRED_BRACKETS | ||
| - EN_UNPAIRED_QUOTES | ||
| disabled_categories: | ||
| - TYPOS | ||
| - TYPOGRAPHY | ||
| - CASING | ||
| enabled_only: false | ||
| level: default | ||
| enabled_rules: [] | ||
| enabled_categories: [] | ||
| biome: | ||
| enabled: true | ||
| hadolint: | ||
| enabled: true | ||
| swiftlint: | ||
| enabled: true | ||
| phpstan: | ||
| enabled: true | ||
| level: default | ||
| golangci-lint: | ||
| enabled: true | ||
| yamllint: | ||
| enabled: true | ||
| gitleaks: | ||
| enabled: true | ||
| checkov: | ||
| enabled: true | ||
| ast-grep: | ||
| packages: [] | ||
| rule_dirs: [] | ||
| util_dirs: [] | ||
| essential_rules: true | ||
| tools: | ||
| shellcheck: | ||
| enabled: true | ||
| ruff: | ||
| enabled: false | ||
| markdownlint: | ||
| enabled: true | ||
| github-checks: | ||
| enabled: true | ||
| timeout_ms: 90000 | ||
| languagetool: | ||
| enabled: true | ||
| enabled_only: false | ||
| level: default | ||
| enabled_rules: [ ] | ||
| disabled_rules: | ||
| - EN_UNPAIRED_BRACKETS | ||
| - EN_UNPAIRED_QUOTES | ||
| enabled_categories: [ ] | ||
| disabled_categories: | ||
| - TYPOS | ||
| - TYPOGRAPHY | ||
| - CASING | ||
| biome: | ||
| enabled: true | ||
| hadolint: | ||
| enabled: false | ||
| swiftlint: | ||
| enabled: false | ||
| phpstan: | ||
| enabled: false | ||
| level: default | ||
| golangci-lint: | ||
| enabled: false | ||
| yamllint: | ||
| enabled: true | ||
| gitleaks: | ||
| enabled: true | ||
| checkov: | ||
| enabled: false | ||
| detekt: | ||
| enabled: false | ||
| eslint: | ||
| enabled: true | ||
| rubocop: | ||
| enabled: false | ||
| buf: | ||
| enabled: false | ||
| regal: | ||
| enabled: false | ||
| actionlint: | ||
| enabled: true | ||
| pmd: | ||
| enabled: true | ||
| cppcheck: | ||
| enabled: false | ||
| semgrep: | ||
| enabled: true | ||
| circleci: | ||
| enabled: true | ||
| ast-grep: | ||
| packages: [ ] | ||
| rule_dirs: [ ] | ||
| util_dirs: [ ] | ||
| essential_rules: true | ||
|
|
||
| chat: | ||
| auto_reply: true | ||
|
|
||
| knowledge_base: | ||
| opt_out: false | ||
| web_search: | ||
| enabled: true | ||
| code_guidelines: | ||
| enabled: true | ||
| filePatterns: [ ] | ||
| learnings: | ||
| scope: auto | ||
| issues: | ||
| scope: auto | ||
| jira: | ||
| project_keys: [] | ||
| usage: auto | ||
| project_keys: [ ] | ||
| linear: | ||
| usage: auto | ||
| team_keys: [ ] | ||
| pull_requests: | ||
| scope: auto |
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
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.