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 Wed Aug 26 07:19:13 UTC 2026.