Kotlin Development Best Practices General Principles - Use English for all code and documentation - Always declare the type of each variable and function - Avoid the type; create necessary types instead - No blank lines within function bodies Naming Conventions Case Standards - PascalCase : Classes, interfaces, enums - camelCase : Variables, functions, methods, parameters - UPPERCASE : Environment variables, constants - underscores case : Files and directories Naming Guidelines - Start each function with a verb (get, set, create, update, delete, etc.) - Use complete words over abbreviations -…