the signals and their derived score are provisional and subject to change.
validate manually before sharing.
289bc39b3e08f26cc14b8a8fd67b815ad9aaa15fdc919307e1ab1186a1af7c056e0a43d9f202dd82Authored: 4 months ago (Thu, 16 Apr 2026 12:20:46 +0000)Match: Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>e189984837a39d3be30f2e7c735ffc2ab43546f1Authored: 5 months ago (Tue, 3 Mar 2026 17:12:37 +0000)Match: Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>a847468a6c5c08b0c78fee45e82a43c9a0f9f2d4Authored: 1 year ago (Thu, 31 Oct 2024 23:44:03 +0000)Match: Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>.github/copilot-instructions.mdTool: github-copilot## Coding Guidelines
- Anytime you don't use {} on an if statement, it must be on one line and MUST be a jump operation (return/continue/break). All other times, you must use {} and be on 2 lines.
- Use var whenever possible
- return statements should generally have a newline above them
Examples:
```csharp
# Case when okay - simple logic flow
var a = 2 + 3;
return a;
# Case when needs newline - complex logic is grouped together
var a = b + c;
_imageService.Resize(...);
return;
```
- Whe.claude/File: .gitignoreTool: claude-codeCLAUDE.mdFile: .gitignoreTool: claude-code