Back to all reviewers

Consistent naming standards

boto/boto3
Based on 3 comments
Other

Follow standard Python naming conventions consistently throughout code and documentation. Use underscores instead of hyphens in variable and parameter names (e.g., `proxies_config` not `proxies-config`). Maintain consistent capitalization of technical terms across all documentation. When working with file paths in code examples, use platform-agnostic...

Naming Conventions Other

Reviewer Prompt

Follow standard Python naming conventions consistently throughout code and documentation. Use underscores instead of hyphens in variable and parameter names (e.g., proxies_config not proxies-config). Maintain consistent capitalization of technical terms across all documentation. When working with file paths in code examples, use platform-agnostic formats that work across all operating systems:

# Good
filename = 'file.txt'

# Avoid (Windows-specific)
filename = 'C:\file.txt'

This consistency improves code readability, ensures cross-platform compatibility, and helps maintain a professional, unified appearance across the codebase and documentation.

3
Comments Analyzed
Other
Primary Language
Naming Conventions
Category

Source Discussions