diff --git a/building/configlet/lint.md b/building/configlet/lint.md index cc1f86a0..6fa58f3c 100644 --- a/building/configlet/lint.md +++ b/building/configlet/lint.md @@ -292,3 +292,7 @@ The `config.json` file should have the following checks: - The `"contributors"` values must not have duplicates - The `"contributors"` values are treated case-insensitively - Users can only be listed in either the `"authors"` or `"contributors"` array (no overlap) + +## Glossary + +- _kebab_case_: strings containing only characters in the range `[a-z0-9]` optionally separated by dashes (e.g. "two-fer"). In regular expression format: `^[a-z0-9]+(-[a-z0-9]+)*$`