Skip to content

Commit

Permalink
Don't separate import directive groups
Browse files Browse the repository at this point in the history
  • Loading branch information
brianpursley committed Dec 27, 2024
1 parent 1784eff commit e10ddd3
Showing 6 changed files with 1 addition and 12 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ insert_final_newline = false
[*.{cs,vb}]

# Organize usings
dotnet_separate_import_directive_groups = true
dotnet_separate_import_directive_groups = false
dotnet_sort_system_directives_first = true
file_header_template = unset

3 changes: 0 additions & 3 deletions Npgmq.Example/Program.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
using System.Reflection;

using Microsoft.Extensions.Configuration;

using Npgmq;

using Npgsql;

var configuration = new ConfigurationBuilder()
4 changes: 0 additions & 4 deletions Npgmq.Test/NpgmqClientTest.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
using System.Text.Json;

using Dapper;

using DeepEqual.Syntax;

using Microsoft.Extensions.Configuration;

using Npgsql;

namespace Npgmq.Test;
2 changes: 0 additions & 2 deletions Npgmq/NpgmqClient.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
using System.Data;
using System.Data.Common;
using System.Text.Json;

using Npgsql;

using NpgsqlTypes;

namespace Npgmq;
1 change: 0 additions & 1 deletion Npgmq/NpgmqCommand.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Data;

using Npgsql;

namespace Npgmq;
1 change: 0 additions & 1 deletion Npgmq/NpgmqCommandFactory.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Data;

using Npgsql;

namespace Npgmq;

0 comments on commit e10ddd3

Please sign in to comment.