Ensure naming conventions are consistent across your codebase and related repositories. When naming commands, functions, variables, or attributes: 1. Check existing conventions in the current and related codebases
Ensure naming conventions are consistent across your codebase and related repositories. When naming commands, functions, variables, or attributes:
PROCESS_COMMAND_ARGS
vs. attribute names like process.command_args
)Example:
# Inconsistent naming (mixing conventions)
tox -e pyright # in this repo
tox -e typecheck # in related repo
# Consistent naming (following established conventions)
tox -e typecheck # in both repos
This guideline improves code readability, reduces cognitive load when working across multiple repositories, and helps ensure documentation accurately represents code elements.
Enter the URL of a public GitHub repository