General Development Standards
Purpose
- Establish baseline expectations for building software
Covers
- Clarity and readability
- Consistency
- Maintainability
- Expectations versus rules
- class naming (name by function, not by usage)
- documentation and code comments
Example (Flutter, short):
// Prefer clear names over short ones.
final userProfile = await repository.fetchUserProfile();