Comment Not Capitalized
Comments must start with a capital letter.
Incorrect:
# this comment doesn't start with a capital letter.
[] > foo
42 > @
Correct:
# This comment does start with a capital letter.
[] > foo
42 > @
Comments starting with an @-marker, such as @todo or @fixme, are exempt from this
check:
# @todo implement this feature.
[] > foo
42 > @
Published on Fri Jul 10 07:32:14 UTC 2026.