Skip to content

Commit 4cb9dbf

Browse files
committed
code_style: remove unused namespace using
1 parent 4aad6a7 commit 4cb9dbf

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,9 @@ dotnet_diagnostic.CA1854.severity = warning
206206
#CA2211:Non-constant fields should not be visible
207207
dotnet_diagnostic.CA2211.severity = error
208208

209+
# IDE0005: remove used namespace using
210+
dotnet_diagnostic.IDE0005.severity = error
211+
209212
# Wrapping preferences
210213
csharp_wrap_before_ternary_opsigns = false
211214

src/Commands/QueryLocalChanges.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
1+
using System.Collections.Generic;
32
using System.Text.RegularExpressions;
43

54
namespace SourceGit.Commands

src/ViewModels/RepositoryConfigure.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
1+
using System.Collections.Generic;
32
using Avalonia.Collections;
43
using CommunityToolkit.Mvvm.ComponentModel;
54

0 commit comments

Comments
 (0)