fix-getters-rules 0.3.2

Fix get functions name by removing the get prefix when applicable
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Rules definition for getter renaming and Rust crate / workspace directory filtering.
//!
//! # Features
//!
//! - **`dir-entry`** *(enabled by default)* — Directory entry filtering.

#[cfg(feature = "dir-entry")]
pub mod dir_entry;

pub mod function;
pub use function::{try_rename_getter_suffix, try_rename_would_be_getter, RenameError};

pub mod new_name;
pub use new_name::{NewName, NewNameRule, ReturnsBool};