Skip to content

Commit c9c42a2

Browse files
refactor(Rest): Rename private_field module to PascalCase
Rename Source/Fn/Transform/private_field.rs to PrivateField.rs and update the module declaration in mod.rs to follow the project's PascalCase naming convention for modules and files. This aligns with the CLAUDE.md mandate that all code follows PascalCase naming for functions, variables, parameters, structs, modules, and file names.
1 parent ec542bc commit c9c42a2

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Source/Fn/Transform/mod.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
//! - Private field conversion (#field -> __field)
55
//! - Additional VSCode-specific transformations
66
7-
pub mod private_field;
7+
#[path = "PrivateField.rs"]
8+
pub mod PrivateField;
89

9-
pub use private_field::PrivateFieldTransform;
10+
pub use PrivateField::PrivateFieldTransform;

0 commit comments

Comments
 (0)