We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3cace6 commit 4886abbCopy full SHA for 4886abb
1 file changed
src/config.rs
@@ -25,6 +25,9 @@ pub struct Config {
25
26
#[serde(default = "default_ignore_dirs")]
27
pub ignore_dirs: Vec<String>,
28
+
29
+ #[serde(default = "default_executable_name")]
30
+ pub executable_name: String,
31
}
32
33
#[allow(dead_code)]
@@ -61,6 +64,10 @@ fn vendored_gems_path() -> String {
61
64
"vendored/".to_string()
62
65
63
66
67
+fn default_executable_name() -> String {
68
+ "codeowners".to_string()
69
+}
70
71
fn default_ignore_dirs() -> Vec<String> {
72
vec![
73
".cursor".to_owned(),
0 commit comments