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
2 changes: 1 addition & 1 deletion eng/Common.globalconfig
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ dotnet_diagnostic.SA1015.severity = suggestion
dotnet_diagnostic.SA1019.severity = none

# Increment symbol '++' should not be preceded by a space
dotnet_diagnostic.SA1020.severity = suggestion
dotnet_diagnostic.SA1020.severity = warning

# Negative sign should be preceded by a space
dotnet_diagnostic.SA1021.severity = suggestion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ private void CheckPathsTable(Dictionary<string, ProjectImportPathMatch> pathsTab
var paths = pathsTable[kind];
Assert.Equal(paths.SearchPaths.Count, expectedPaths.Length);

for (int i = 0; i < paths.SearchPaths.Count; i ++)
for (int i = 0; i < paths.SearchPaths.Count; i++)
{
Assert.Equal(paths.SearchPaths[i], expectedPaths[i]);
}
Expand Down