BlueStyle
BlueStyle copied to clipboard
A Julia style guide that lives in a blue world
Discussed w/ @nickrobinson251 offline, we should add rule that states to never line break after an `=` operation. Example: ``` # Yes function_result = some_long_function_that_goes_over_the_92_char_line_limit( some_param, another_param ) # No...
We should transpose these rules across https://docs.julialang.org/en/v1/manual/style-guide/index.html#Write-functions-with-argument-ordering-similar-to-Julia-Base-1
For you root test suggestion, some explsination may be necessary on what are "arithmetic.jl" and "urils.jl". Are they actual code or tests? Are they tests for modules in the same...
Since we moved this to JuliaDiff: #117 the URL for the badge needs to be updated I believe it will keep working cos github sets up redirects, but better to...
# This part of the README # My problem I don't understand how `using` is more explicit and clearer than `import`. Consider this example: Imagine this code is part of...
Performance-critical Julia code usually performs bounds checks and input validation once before running (presumably) safe code. Macros such as `@simd`, `@inbounds`, and `@turbo` have been added to Julia to boost...
Hi! Currently, if you try to leave a comment before a `catch` statement, it will be indented. This is a bit of an eyesore when you're trying to comment on...