The organize usings option in Visual Studio 2013 doesn't match the style cop rule SA1208. For example:
The Organize usings would put them in:
Namespace.Entities;
Namespace.Interfaces;
System;
System.Linq;
But SA108 requires the system ones first.
System;
System.Linq;
Namespace.Entities;
Namespace.Interfaces;
Is there a way to make visual studio behavior match the StyleCop rule?