Skip to content
Open
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 .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
* @Demon-Die
* @DemonDie
* @RishiByte
Comment on lines +1 to 2

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Consolidate wildcard owners onto one * rule to avoid override behavior.

Using two separate * entries can cause the latter rule to take precedence, so @DemonDie may not be applied as intended. Put both owners on the same line.

Proposed fix
-* `@DemonDie`
-* `@RishiByte`
+* `@DemonDie` `@RishiByte`
📝 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
* @DemonDie
* @RishiByte
* `@DemonDie` `@RishiByte`
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.github/CODEOWNERS around lines 1 - 2, The CODEOWNERS file currently lists
two separate wildcard rules which causes the later rule to override the earlier;
consolidate them by replacing the two separate "*" entries with a single "*"
rule that includes both owners (e.g., "* `@DemonDie` `@RishiByte`") so both users
are applied as owners for all paths.

Loading