• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

kevinoid / NetCoreProject / 9578953904 / 1
86%
main: 86%

Build:
DEFAULT BRANCH: main
Ran 19 Jun 2024 08:49AM UTC
Files 2
Run time 0s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

13 Jun 2024 06:56PM UTC coverage: 85.714%. Remained the same
9578953904.1

push

github

kevinoid
.editorconfig: Suggest for loop condition (S1994)

Although not checking the value changed by the for_iterator expression
in the for_condition expression of a for loop can be an error, it can
also be intentional behavior, such as using a variable to count retries:

```csharp
for (int attempt = 0; ; attempt++)
{
    try
    {
	...
    }
    catch (Exception)
    when (attempt < 3)
    {
	...
    }
}
```

Although this could be converted to a while statement, it would need an
additional level of indentation to limit the scope of the variable to
the loop.  Doing that, or disabling the warning in every case, seems to
outweigh the value added by this check.  Leave it as a suggestion only.

Signed-off-by: Kevin Locke <kevin@kevinlocke.name>

6 of 8 branches covered (75.0%)

Branch coverage included in aggregate %.

6 of 6 relevant lines covered (100.0%)

1.0 hits per line

Source Files on job ubuntu-latest_* - 9578953904.1
  • Tree
  • List 0
  • Changed 0
  • Source Changed 0
  • Coverage Changed 0
Coverage ∆ File Lines Relevant Covered Missed Hits/Line Branch Hits Branch Misses
  • Back to Build 9578953904
  • 53aea38d on github
  • Prev Job for on main (#9468596417.2)
  • Next Job for on main (#9594395236.2)
  • Delete
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc