Dominique Luna
Dominique Luna
https://github.com/domluna/JuliaFormatter.jl/pull/588/files#diff-60c9ecaf817f34a35b04e83d428e16cd44a2bbf06b642a1fffc8f67d39e2aa9dR2-R12
``` julia> s "function foo()\n a && b && c && d\nend\n" julia> s |> print function foo() a && b && c && d end julia> format_text(s, always_use_return=true, margin=1)...
Add an option `for_in_replacement`, that works alongside `always_for_in` whereby you can specify an alternative to `in`. Can be used when `always_for_in` is `true` to replace `in` with ∈ (\\in), or...
Right now there are cases where parenthesis with multiple arguments are NOT marked as a Tuple node. It may simplify things a bit to treat these as such. Example: ```...
I was wondering if you happen to have the problem sets without solutions somewhere.
Assuming I could define a custom gradient for the nil embedding, the memory a.k.a variables A, B, TA, and TB can be in a separate memory component. The main benefit...
``` package main import ( "fmt" "github.com/r3labs/diff/v2" ) type Data struct { ID int32 `json:"id" diff:"ID"` Value string `json:"value" diff:"Value"` } type Order struct { Items []Data `diff:"Items,ID"` } func...
ref https://github.com/domluna/JuliaFormatter.jl/issues/603 Wondering if there's a way to disable this behaviour ```julia julia> s = """ \"\"\" solve_knapsack( optimizer, data_filename::String, config::_AbstractConfiguration, ) Solve the knapsack problem and return the optimal...
Currently YASStyle does unnesting when possible. Consider this line ``` overwrite || (isfile(file_path) && error("overwrite disabled but file path already exists: $(file_path)")) ``` If this exceeds the max margin it's...