-
Notifications
You must be signed in to change notification settings - Fork 198
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Got sick of seeing messages about namespaces not matching folder names, so thought I'd suppress it. Then Alex mentioned the formatting rule in standup, and I thought tests deserve the same treatment.
- Loading branch information
Showing
2 changed files
with
9 additions
and
3 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,8 @@ | ||
[*.cs] | ||
|
||
# Fix Formatting | ||
dotnet_diagnostic.IDE0055.severity = warning | ||
|
||
# IDE0130: Namespaces should match folder structure | ||
# We don't follow this convention | ||
dotnet_diagnostic.IDE0130.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
[*.cs] | ||
|
||
# Call ConfigureAwait | ||
dotnet_diagnostic.CA2007.severity = warning | ||
# Fix Formatting | ||
dotnet_diagnostic.IDE0055.severity = warning | ||
dotnet_diagnostic.CA2007.severity = warning |