I would like using directives to be sorted with these rules:
System on top.
- The rest sorted alphabetically.
- All
using static at the end which follows the same rules.
Example:
using System;
using Bar;
using Baz;
using Foo;
using static System.Math;
using static Bar.BarHelper;
using static Foo.FooHelper;
I would like using directives to be sorted with these rules:
Systemon top.using staticat the end which follows the same rules.Example: