Jed

Results 153 comments of Jed

Without language-specific AST knowledge, there's no way to know which lines are considered empty or not. Consider a multi-line string where some of the lines are empty. You wouldn't want...

What if the line in question has 20 spaces, even though it’s at a single indentation level? Do we trim down to 4 spaces (if that’s the setting)? This is...

I think you’re missing the point. If it requires a custom line by line implementation by means of an extension then it’s outside the goals of EditorConfig, which is intended...

Yeah, that sounds a bit surprising to me too, considering all the cores run the same tests. Anyway, the code that you couldn't figure out is called [labels](https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Statements/label). They are...

Yes. That’s exactly what the `.in` files are for. yes, you’re on the right track.

It's actually supposed to be `unset`. See https://editorconfig.org/#supported-properties

That’s what `unset` was designed to do

I absolutely agree with this request; however, my personal conviction is that this rule shouldn't exist. I would rather use a [`rulers`](https://github.com/editorconfig/editorconfig/issues/89) rule to indicate a line is exceeding some...

@osdm, are you suggesting you want to "enforce" a soft wrap? That's a user preference, so I don't think it has a place in EditorConfig, especially since it has zero...

I believe a `locale` setting would indirectly satisfy your requirements. ```ini [*.md] locale = en-us ``` This would allow editors to pull their locale-specific list of words, in whatever file...