editorconfig icon indicating copy to clipboard operation
editorconfig copied to clipboard

EditorConfig universal issue tracker and wiki

Results 144 editorconfig issues
Sort by recently updated
recently updated
newest added

This might be petty, but in the wiki page here that is linked from the editor config website, the `indent_size` declarations's possible values is considered `integer`, compare that to `tab_width`...

bug

Visual Studio Code supports the following setting to enable editor guidelines: ```json "editor.rulers": [80,120], ``` A Visual Studio extension supports this format: ```json5 # Editor guidelines (VS2019 extension) [*] guidelines...

feature request

It would be handy to be able to trim any extra trailing newlines from the end of a file, so there is always just one final newline. I'm not sure...

feature request

I suppose there're technical reasons to make `charset` support only a closed set of encodings but current list falls pretty short. I'm specially missing encodings that are common in my...

feature request

I want to write something along: ``` shell compile gcc %basename% -o %basename_no_extension%.out map compile ``` Then: - `keymap` can be only advisory: if the map is already present on...

feature request

I wonder if you can support this kind of features: spaces in parameters: ``` javascript function( a, b, c ) { var jehuf; } ``` Notice the space before and...

feature request

Would be nice to have an option to set the output type. ``` shell editorconfig --format json ``` or something. ## Related to #64 ## Want to back this issue?...

feature request

Currently I know about two usages of domain specific properties: .NET compiler+Visual Studio and ReSharper+Rider. I think there are more usages. There are two problems with them: 1. Currently two...

file format
feature request

Add an option to enforce/support aligning of types for parameters when declaring, implementing, and calling functions when parameters are put on new lines. For example: ``` String doStuff(int* thing, char...

feature request

When one declares a method with many parameters the parameters may be arranged vertically instead of horizontally, like so (examples in Scala): ``` def MyDeclaredMethod( arg1: SomeType, arg2: SomeType, arg3:...

feature request