Jed
Jed
Specifically, I'm talking about how [ECLint](https://github.com/jedmao/eclint) should handle the charsets. Should I detect the document charset and convert it to the appropriate one? That's a pretty complicated feat! I do...
This sounds like a valuable feature to me. I've had similar issues in the past.
[Visual Studio Code](http://code.visualstudio.com/) has similar settings and I believe the naming is a bit more clear about what's going on: ``` json { "search.exclude": { "**/node_modules": true, "**/bower_components": true },...
@xuhdev there needs to be two types of excludes. One for files visible in your folder view and one for files included in search results.
@xuhdev in your way, can we at least have a way to put each file/folder on a separate line or does that not work with the INI file format? It's...
@xuhdev, do you know the delta between the EditorConfig parser vs. standard INI parser?
@xuhdev, the reason I ask is because it would be particularly useful and more maintainable if a separately-maintained, 3rd-party INI parser we're used for each respective core library; thus, we...
@xuhdev, I'm not suggesting we use a unified INI parser, but I am suggesting that each core library not be concerned with INI parsing and leave that up to a...
Which begs the question, does the INI spec support line continuation with commas at the end of each line?
It sounds like we can support the requested feature in this thread then, seeing as there is no spec from which we are diverging in the first place.