Formation Names Must Be in Kebab-case
Formation names must use kebab-case: all lowercase letters and
digits, with words separated by hyphens. camelCase and
snake_case formation names are not allowed.
Incorrect:
# CsvObject.
[] > csvObject
# Csv object.
[] > csv_object
Correct:
# Csv object.
[] > csv-object
Published on Fri Jul 10 07:32:26 UTC 2026.