Jed

Results 153 comments of Jed

At least, that's how it worked in the past. I'm not sure how that feature was destroyed. I'll have to take a look into it!

Yep. My memory is so bad. The one that restored the settings came from a branch I had here: https://github.com/jedmao/editorconfig-visualstudio/tree/enforce

Specifically, it happens in the [Settings folder](https://github.com/jedmao/editorconfig-visualstudio/tree/enforce/Plugin/Logic/Settings)

That's rather JavaScript specific, which isn't really in the design goals of EditorConfig.

Ah, see, I didn't realize this was on the core-js repo. Seeing as it is, I have no problems with such a feature; though, we still need to look in...

First, we need to come up with an acceptable spec. At first glance, I'm imagining something like the following: ``` json { "editorConfig": { "root": true, "settings": [ { "*":...

Another alternative would be the following structure: ``` json { "editorConfig": [ ["root", true], ["*", { "indent_style": "space", "indent_size": 4 }] ] } ```

@jonathantneal anything above existing functionality would be a separate ticket. Please open another issue for that feature request and detail how it might work. BTW – I'm not at all...

Nope. No other way. And remember, this is just for the js core. Other cores would need some kind of implementation too. I think we should stay focused on the...

Yes, it has to be duplicated because the cores are written in different languages. The only thing that's not duplicated are the tests, which are shared across cores.