Editorconfig Guide.e

Separate import directive groups

EditorConfig key: dotnet-separate-import-directive-groups

Separate import directive groups

dotnet-separate-import-directive-groups

This option controls whether groups of using directives should be separated by a blank line.

Default value:

false

Possible values:

  • true
  • false

Examples

true
using System;

using A;
using B;
false
using System;
using A;
using B;