Skip to content

Commit

Permalink
chore(deps): update dependency meziantou.analyzer to v1.0.758 (#524)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[Meziantou.Analyzer](https://togithub.com/meziantou/Meziantou.Analyzer)
| `1.0.570` -> `1.0.758` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/Meziantou.Analyzer/1.0.758?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Meziantou.Analyzer/1.0.758?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Meziantou.Analyzer/1.0.570/1.0.758?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Meziantou.Analyzer/1.0.570/1.0.758?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/Testably/Testably.Abstractions).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Valentin <valentin.breuss@baur.at>
  • Loading branch information
renovate[bot] and vbreuss authored Mar 25, 2024
1 parent e18b410 commit bc86dd0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -241,3 +241,4 @@ dotnet_diagnostic.MA0005.severity = none
dotnet_diagnostic.MA0016.severity = none
dotnet_diagnostic.MA0048.severity = none
dotnet_diagnostic.MA0051.severity = none
dotnet_diagnostic.MA0099.severity = none
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@
<PackageVersion Include="Testably.Abstractions.FluentAssertions" Version="1.0.1" />
</ItemGroup>
<ItemGroup>
<PackageVersion Include="Meziantou.Analyzer" Version="1.0.570" />
<PackageVersion Include="Meziantou.Analyzer" Version="1.0.758" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ internal static string Replace(
string newValue,
StringComparison comparisonType)
{
#pragma warning disable MA0074
return @this.Replace(oldValue, newValue);
#pragma warning restore MA0074
}

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public void Children_ShouldBeSortedAlphabetically(string[] childNames)
.Cast<FileSystemInfoDescription>()
.ToArray());

sut.Children.Select(c => c.Name).Should().BeInAscendingOrder();
sut.Children.Select(c => c.Name).Should().BeInAscendingOrder(StringComparer.Ordinal);
}

[Fact]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public void GenerateRandomFileExtension_ShouldNotStartWithDotOrReturnEmptyString
while (true)
{
string fileExtension = randomSystem.Random.Shared.GenerateFileExtension();
if (fileExtensions.Contains(fileExtension))
if (fileExtensions.Contains(fileExtension, StringComparer.Ordinal))
{
break;
}
Expand Down Expand Up @@ -46,7 +46,7 @@ public void GenerateRandomFileName_ShouldGenerateEdgeCases()
while (true)
{
string fileName = randomSystem.Random.Shared.GenerateFileName();
if (fileNames.Contains(fileName))
if (fileNames.Contains(fileName, StringComparer.Ordinal))
{
break;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ internal static string Replace(
string newValue,
StringComparison comparisonType)
{
#pragma warning disable MA0074 // Avoid implicit culture-sensitive methods
return @this.Replace(oldValue, newValue);
#pragma warning restore MA0074 // Avoid implicit culture-sensitive methods
}
}
#endif

0 comments on commit bc86dd0

Please sign in to comment.