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 .globalconfig
Original file line number Diff line number Diff line change
Expand Up @@ -1373,7 +1373,7 @@ dotnet_diagnostic.SA1505.severity = none
dotnet_diagnostic.SA1506.severity = none

# SA1507: Code should not contain multiple blank lines in a row
dotnet_diagnostic.SA1507.severity = none
dotnet_diagnostic.SA1507.severity = warning

# SA1508: Closing braces should not be preceded by blank line
dotnet_diagnostic.SA1508.severity = none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9227,7 +9227,6 @@ private void Process_Types_Ps1Xml(string filePath, ConcurrentBag<string> errors)
#if UNIX
#region UnixStat


if (ExperimentalFeature.IsEnabled("PSUnixFileStat"))
{
typeName = @"System.IO.FileSystemInfo";
Expand Down
1 change: 0 additions & 1 deletion src/powershell/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ private static void AttemptExecPwshLogin(string[] args)
// We can reuse this value later to prevent needing to call a .NET API
// to generate our exec invocation.


// We don't care about argc's value, since argv[0] must always exist.
// Skip over argc, but remember where exec_path is for later
executablePathPtr = IntPtr.Add(procargs, sizeof(int));
Expand Down
1 change: 0 additions & 1 deletion test/tools/WebListener/Controllers/DosController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ public string Index()

Response.StatusCode = 200;


StringValues dosType;
if (Request.Query.TryGetValue("dosType", out dosType))
{
Expand Down