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

kevinoid / NetCoreProject / 9561875943
86%

Build:
DEFAULT BRANCH: main
Ran 18 Jun 2024 08:45AM UTC
Jobs 0
Files 0
Run time –
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

Canceled at 22 Oct 2024 10:21PM UTC via web
9561875943

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>
Source Files on build 9561875943
Detailed source file information is not available for this build.
  • Back to Repo
  • Github Actions Build #9561875943
  • 53aea38d on github
  • Prev Build on main (#9468596417)
  • Next Build on main (#9578953904)
  • 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