Editorconfig Guide.e

Sort system directives first

EditorConfig key: dotnet-sort-system-directives-first

Sort system directives first

dotnet-sort-system-directives-first

This option controls whether using directives for System namespaces should be sorted before other using directives.

Default value:

true

Possible values:

  • true
  • false

Examples

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