File tree 3 files changed +8
-4
lines changed
src/PowerShellEditorServices/Services/DebugAdapter
test/PowerShellEditorServices.Test.E2E
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,14 @@ trim_trailing_whitespace = true
13
13
csharp_space_before_open_square_brackets = true
14
14
csharp_space_after_keywords_in_control_flow_statements = true
15
15
16
+ # CS0168: The variable 'var' is declared but never used
17
+ dotnet_diagnostic.CS0168.severity = error
18
+ # CS0169: The private field 'class member' is never used
19
+ dotnet_diagnostic.CS0169.severity = error
20
+ # CS0219: The variable 'variable' is assigned but its value is never used
21
+ dotnet_diagnostic.CS0219.severity = error
22
+ # CS0414: The private field 'field' is assigned but its value is never used
23
+ dotnet_diagnostic.CS0414.severity = error
16
24
# CA2007: Do not directly await a Task
17
25
dotnet_diagnostic.CA2007.severity = error
18
26
# CA1822: Mark members as static
Original file line number Diff line number Diff line change @@ -43,8 +43,6 @@ internal class DebugService
43
43
private StackFrameDetails [ ] stackFrameDetails ;
44
44
private readonly PropertyInfo invocationTypeScriptPositionProperty ;
45
45
46
- private static int breakpointHitCounter ;
47
-
48
46
private readonly SemaphoreSlim debugInfoHandle = AsyncUtils . CreateSimpleLockingSemaphore ( ) ;
49
47
#endregion
50
48
Original file line number Diff line number Diff line change @@ -35,8 +35,6 @@ public class LanguageServerProtocolMessageTests : IClassFixture<LSPTestsFixture>
35
35
private readonly static string s_binDir =
36
36
Path . GetDirectoryName ( Assembly . GetExecutingAssembly ( ) . Location ) ;
37
37
38
- private static bool s_registeredOnLogMessage ;
39
-
40
38
private readonly ILanguageClient PsesLanguageClient ;
41
39
private readonly List < Diagnostic > Diagnostics ;
42
40
private readonly List < PsesTelemetryEvent > TelemetryEvents ;
You can’t perform that action at this time.
0 commit comments