editorconfig
editorconfig copied to clipboard
EditorConfig universal issue tracker and wiki
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`...
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...
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...
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...
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...
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...
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?...
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...
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...
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:...