*EditorConfig community won't touch the very language specific options.* 

That makes sense as was what we were all expecting

*For the option dotnet_sort_system_directives_first, can you give us an 
example of how it would work? *

This option is for the imports/using at the top of a given code file. Most 
of the base-class-library namespaces start with *System. *Some people 
prefer to sort their usings alphabetically, some prefer them sorted 
alphabetically except for System namespaces.
This is the top of a C# file with it on:

using System.Collections.Generic;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using StreamJsonRpc;
using Microsoft.CodeAnalysis.Remote;

And this is it with it off

using Microsoft.CodeAnalysis.Remote;
using StreamJsonRpc;
using System.Collections.Generic;
using System.IO;
using System.Threading;
using System.Threading.Tasks;



On Wednesday, November 2, 2016 at 9:34:30 PM UTC-7, Hong Xu wrote:

>
> On 2016-11-02 Wed 18:35 GMT-0700, 'Jonathon Marolf' via EditorConfig <
> [email protected] <javascript:>> wrote: 
>
> > Hello editorconfig community 
> > 
> > I am a developer at Microsoft working on the IDE for C# and Visual Basic 
> in 
> > Visual Studio. 
> > 
> > I am currently planning to add editorconfig support for most of the C# 
> and 
> > Visual Basic formatting options in Visual Studio.  Note, the plan is to 
> > eventually add these same options to projects like Omnisharp 
> > <http://www.omnisharp.net/>so they would be supported in other places 
> > besides Visual Studio. I would love to get feedback from all of you on 
> how 
> > well my proposed set of options fits into rest of editorconfig and what 
> > changes you would like to see. 
> > 
> > here <https://gist.github.com/jmarolf/0e165b27a498b49e3b3512004ea9d8b8>is 
>
> > the gist with my proposed set of options 
> > 
>
> Hi Jonathon, 
>
> Thanks for your work, it is definitely very valuable for the 
> EditorConfig community. I personally won't be against the proposal you 
> have attached; but the core of the EditorConfig community won't touch 
> the very language specific options. 
>
> For the option dotnet_sort_system_directives_first, can you give us an 
> example of how it would work? 
>
> Thanks, 
> Hong 
>

-- 
You received this message because you are subscribed to the Google Groups 
"EditorConfig" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/editorconfig.
For more options, visit https://groups.google.com/d/optout.

Reply via email to