You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(Common): Enforce PascalCase naming convention across codebase
Align all trait method names, function names, and code examples with the PascalCase naming standard defined in CLAUDE.md. This includes:
- Rename trait methods: `read_file` → `ReadFile`, `write_file` → `WriteFile`, `get_configuration` → `GetConfiguration`, `update_configuration` → `UpdateConfiguration`, `get_workspace_folders` → `UpdateWorkspaceFolders`
- Rename effect constructors: `read_file_effect` → `ReadFile_effect`, `get_configuration_effect` → `GetConfiguration_effect`
- Reformat struct field declarations to remove spaces before colons (consistent with Rust style)
- Reorganize import statements to use grouped `super::{}` syntax
- Update doc comments with proper line wrapping for readability
- Fix code examples in DeepDive.md documentation to reflect new naming
These are purely cosmetic refactoring changes that improve code consistency without altering any runtime behavior.
0 commit comments