You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.
Not entirely sure about the terminal/non-terminal rule. I see where you're coming from, but I don't believe it will be followed in practice (always putting curly braces around an increment might be too verbose for people's taste).
if-else
A one-line
if-else
expression should not use curly bracket blocks:A multiline
if-else
may not to use blocks if both of the branches consist of one-line expressions:If at least one of the branches has 2 or more statements, both branches should use blocks:
raw if
If the branch of a raw
if
is the last in the control flow, for example it returns or throws, do not use a block:If the single branch of a raw
if
is not terminal, use a multi-line code block:The text was updated successfully, but these errors were encountered: