Martin Smit

Results 46 comments of Martin Smit

Right, but I'm just saying that we should write a little note about them in the docs in case someone wants to do multi-spaced stuff and then can't. We should...

I added the file to CI and changed its triggers to be the same as the current `ci.yml`. I wasn't sure where to fit it into that file, or whether...

Honestly, I don't know myself. Might be best to ask the JuliaFormatter team themselves

Ok so Blue style is closer to what you prefer, from what I can tell. It's also my preferred one over SciML by far. What do you think?

Btw, in the case of hard formatting, maybe it's best to *just* enforce it in `src`, often in examples and docs it's nice to be able to go against strict...

Ok, so this new style I made by altering `MinimalStyle` is pretty... well, minimal in the changes that it makes. The biggest thing is that because `margin = 10_000`, there...

>There is no way/option you are aware of that makes it so that the function arguments and closing parenthesis are idented one more time? I'm not 100% sure if this...

Wait, this is exactly what [SciML](https://github.com/SciML/SciMLStyle#functions) recommends... I wonder what doesn't work here.

Wait but [Blue](https://github.com/invenia/BlueStyle#method-definitions) says to do exactly that (scroll down a bit), it just treats kwargs differently. Maybe Blue *is* the one true style?

The example given to this point: ```julia # Yes function my_large_function(argument1, argument2, argument3, argument4, argument5, x, y, z) # No function my_large_function(argument1, argument2, argument3, argument4, argument5, x, y, z) ```...