Skip to content
Open
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
2 changes: 1 addition & 1 deletion Workleap.DotNet.CodingStandards.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<copyright>Copyright Β© Workleap</copyright>
<repository type="git" url="$RepositoryUrl$" commit="$RepositoryCommit$" branch="$RepositoryBranch$" />
<dependencies>
<dependency id="Meziantou.Analyzer" version="3.0.87" />
<dependency id="Meziantou.Analyzer" version="3.0.98" />
<dependency id="Microsoft.CodeAnalysis.BannedApiAnalyzers" version="3.3.4" />
<dependency id="Microsoft.CodeAnalysis.NetAnalyzers" version="10.0.300" />
</dependencies>
Expand Down
12 changes: 11 additions & 1 deletion src/files/analyzers/Analyzer.Meziantou.Analyzer.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@ dotnet_diagnostic.MA0191.severity = none

# MA0192: Use HasFlag instead of bitwise checks
# Help link: https://github.com/meziantou/Meziantou.Analyzer/blob/main/docs/Rules/MA0192.md
# Enabled: False, Severity: suggestion
# Enabled: True, Severity: suggestion
dotnet_diagnostic.MA0192.severity = none

# MA0193: Use an overload with a MidpointRounding argument
Expand Down Expand Up @@ -1001,3 +1001,13 @@ dotnet_diagnostic.MA0199.severity = warning
# Enabled: True, Severity: suggestion
dotnet_diagnostic.MA0200.severity = suggestion

# MA0201: Do not use zero-valued enum flags in flag checks
# Help link: https://github.com/meziantou/Meziantou.Analyzer/blob/main/docs/Rules/MA0201.md
# Enabled: True, Severity: warning
dotnet_diagnostic.MA0201.severity = warning

# MA0202: Conditional compilation branches have identical code
# Help link: https://github.com/meziantou/Meziantou.Analyzer/blob/main/docs/Rules/MA0202.md
# Enabled: True, Severity: warning
dotnet_diagnostic.MA0202.severity = warning

Loading