-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
HAST-327: Update Lombiq.Analyzers to latest
- Loading branch information
Showing
132 changed files
with
501 additions
and
439 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
is_global = true | ||
|
||
# Code analysis rules for Hastlayer, extending Lombiq.Analyzers.globalconfig. | ||
|
||
# Microsoft.CodeAnalysis.NetAnalyzers rules | ||
|
||
# CA1062: Validate arguments of public methods. We disabled it, because it makes the code bloated and doesn't support | ||
# `ArgumentNullException.ThrowIfNull()` either. | ||
dotnet_diagnostic.CA1062.severity = none | ||
|
||
# CA1848: Use the LoggerMessage delegates. While this might slightly improve performance, it deters logging by turning | ||
# it into a huge chore by breaking up the code flow and creating an unreasonable amount of boilerplate. | ||
dotnet_diagnostic.CA1848.severity = none | ||
|
||
# CA2007 : Consider calling ConfigureAwait on the awaited task. This warning is relevant to desktop apps that have a GUI | ||
# thread. While Hastlayer can be used in GUI applications, itself does not operate a user interface so this warning is | ||
# not relevant internally. A consumer of the library may call ConfigureAwait on one of the asynchronous public API | ||
# methods if needed. | ||
dotnet_diagnostic.CA2007.severity = none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 8 additions & 4 deletions
12
src/Hastlayer/Hast.Catapult/Constants.cs → ...layer/Hast.Catapult/Constants/Catapult.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.