mirror of https://github.com/fredrikekre/Runic.jl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.0 KiB
1.0 KiB
TODOs, notes, and various thoughts
Inconsistencies
-
The
spaces_around_operatorsrule have the following inconsistencies.-
:,^, and::instead fall underno_spaces_around_colon_etc:# current formatting # "consistent" formatting a:b a : b ✖ a^b a ^ b ✖ a::b a :: b ✖ -
<:and<:fall underno_spaces_around_colon_etcif they have no LHS:# current formatting # "consistent" formatting a <: b a <: b ✔ a >: b a >: b ✔ a{c <: b} a{c <: b} ✔ a{c >: b} a{c >: b} ✔ a{<:b} a{<: b} ✖ a{>:b} a{>: b} ✖
-