File tree Expand file tree Collapse file tree 3 files changed +2
-4
lines changed
src/PowerShellEditorServices/Services/DebugAdapter
test/PowerShellEditorServices.Test.E2E Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ trim_trailing_whitespace = true
1313csharp_space_before_open_square_brackets = true
1414csharp_space_after_keywords_in_control_flow_statements = true
1515
16+ # CS0169: The private field 'class member' is never used
17+ dotnet_diagnostic.CS0169.severity = error
1618# CA2007: Do not directly await a Task
1719dotnet_diagnostic.CA2007.severity = error
1820# CA1822: Mark members as static
Original file line number Diff line number Diff line change @@ -43,8 +43,6 @@ internal class DebugService
4343 private StackFrameDetails [ ] stackFrameDetails ;
4444 private readonly PropertyInfo invocationTypeScriptPositionProperty ;
4545
46- private static int breakpointHitCounter ;
47-
4846 private readonly SemaphoreSlim debugInfoHandle = AsyncUtils . CreateSimpleLockingSemaphore ( ) ;
4947 #endregion
5048
Original file line number Diff line number Diff line change @@ -35,8 +35,6 @@ public class LanguageServerProtocolMessageTests : IClassFixture<LSPTestsFixture>
3535 private readonly static string s_binDir =
3636 Path . GetDirectoryName ( Assembly . GetExecutingAssembly ( ) . Location ) ;
3737
38- private static bool s_registeredOnLogMessage ;
39-
4038 private readonly ILanguageClient PsesLanguageClient ;
4139 private readonly List < Diagnostic > Diagnostics ;
4240 private readonly List < PsesTelemetryEvent > TelemetryEvents ;
You can’t perform that action at this time.
0 commit comments