Use appropriate separators in compound identifiers to improve readability and ensure naming consistency across the codebase. Specifically: 1. Use hyphens to separate words in multi-word paths, repository names, and other resources:
Use appropriate separators in compound identifiers to improve readability and ensure naming consistency across the codebase. Specifically:
wg-deployment
, feature-name
wgdeployment
, featurename
v1.0
, v2.3
0.Y
, 1.0
(without v prefix)This practice makes identifiers more readable, maintains consistency with standard conventions, and helps ensure references remain valid over time as the codebase evolves. Consistent naming patterns reduce the need for future refactoring and make documentation more predictable and easier to navigate.
Enter the URL of a public GitHub repository