Benjamin Brienen
Benjamin Brienen
With: ```toml hard_tabs = true braces_style = "AlwaysNextLine" control_brace_style = "AlwaysNextLine" group_imports = "StdExternalCrate" imports_granularity = "One" imports_indent = "Block" imports_layout = "Vertical" indent_style = "Block" newline_style = "Unix" trailing_comma...
Please refer to the linked project below 2 tabs of indentation are being interpreted as more than 2 characters/width, causing rustfmt to think that the line is overflowing. On the...
Microsoft will format a user's folder as "C:\Users\FirstName LastName\" in some circumstances. The command line arguments must be quoted to ensure that the file path is treated as one argument.
Example code: ```csharp public static SystemTextJsonSerializer GetJsonSerializer( JsonSerializerOptions? jsonSerializerOptions = default, JsonNamingPolicy? jsonNamingPolicy = default) { return (jsonSerializerOptions, jsonNamingPolicy) switch // IDE0072: Populate switch { (not null, not null) =>...
The python script in the extension has 2 parameters: the executable location/command, and the label text. If the install script asked for these pieces of information, we could support open...
Clicking this button on a unit test:  Results in:  can't parse: [json.exception.type_error.302] type must be array, but is string launch.json: ```json { "version": "0.2.0", "configurations": [ { "name":...
Couldn't find a better place to add a feature request or gauge interest... I know the readme suggests adding support for more language-specific features. I'm simply here to ask whether...
Documentation does not exist for roslynator_blank_line_between_closing_brace_and_switch_section. In fact, there are 0 search results on Google and DuckDuckGo, but I can see that the config is being used in the codebase....
## What problem does this solve or what need does it fill? Using bevy in no-std contexts would be a cool feature. Supporting no-std is considered to be an advantage....
There should be a way of saying to ignore a whole type when you register it. For example, marker types such as PhantomData. https://github.com/bevyengine/bevy/pull/15313#issuecomment-2365454473 Related: #5144