Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions Workleap.DotNet.CodingStandards.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<copyright>Copyright © Workleap</copyright>
<repository type="git" url="$RepositoryUrl$" commit="$RepositoryCommit$" branch="$RepositoryBranch$" />
<dependencies>
<dependency id="Meziantou.Analyzer" version="3.0.19" />
<dependency id="Meziantou.Analyzer" version="3.0.28" />
<dependency id="Microsoft.CodeAnalysis.BannedApiAnalyzers" version="3.3.4" />
<dependency id="Microsoft.CodeAnalysis.NetAnalyzers" version="10.0.103" />
<dependency id="Microsoft.CodeAnalysis.NetAnalyzers" version="10.0.201" />
<dependency id="StyleCop.Analyzers" version="1.2.0-beta.556" />
</dependencies>
</metadata>
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "10.0.103",
"version": "10.0.201",
"rollForward": "latestMinor",
"allowPrerelease": false
}
Expand Down
15 changes: 15 additions & 0 deletions src/files/analyzers/Analyzer.Meziantou.Analyzer.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -932,3 +932,18 @@ dotnet_diagnostic.MA0186.severity = none
# Enabled: False, Severity: suggestion
dotnet_diagnostic.MA0187.severity = none

# MA0188: Use System.TimeProvider instead of a custom time abstraction
# Help link: https://github.com/meziantou/Meziantou.Analyzer/blob/main/docs/Rules/MA0188.md
# Enabled: True, Severity: suggestion
dotnet_diagnostic.MA0188.severity = suggestion

# MA0189: Use InlineArray instead of fixed-size buffers
# Help link: https://github.com/meziantou/Meziantou.Analyzer/blob/main/docs/Rules/MA0189.md
# Enabled: True, Severity: suggestion
dotnet_diagnostic.MA0189.severity = suggestion

# MA0190: Use partial property instead of partial method for GeneratedRegex
# Help link: https://github.com/meziantou/Meziantou.Analyzer/blob/main/docs/Rules/MA0190.md
# Enabled: True, Severity: suggestion
dotnet_diagnostic.MA0190.severity = suggestion

Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,16 @@ dotnet_diagnostic.IDE0350.severity = silent
# Enabled: True, Severity: silent
dotnet_diagnostic.IDE0360.severity = silent

# IDE0370: Remove unnecessary suppression
# Help link: https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0370
# Enabled: True, Severity: silent
dotnet_diagnostic.IDE0370.severity = suggestion

# IDE0380: Remove unnecessary 'unsafe' modifier
# Help link: https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0380
# Enabled: True, Severity: silent
dotnet_diagnostic.IDE0380.severity = suggestion

# IDE1005: Delegate invocation can be simplified.
# Help link: https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide1005
# Enabled: True, Severity: silent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CliWrap" Version="3.10.0" />
<PackageReference Include="CliWrap" Version="3.10.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Meziantou.Framework.FullPath" Version="1.1.16" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="10.0.3" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="5.0.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="5.0.0" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic" Version="5.0.0" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Workspaces" Version="5.0.0" />
<PackageReference Include="Meziantou.Framework.FullPath" Version="1.1.17" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="10.0.5" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="5.3.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="5.3.0" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic" Version="5.3.0" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Workspaces" Version="5.3.0" />
<PackageReference Include="NuGet.Protocol" Version="7.3.0" />
</ItemGroup>

Expand Down
Loading