Skip to content

Commit 272382b

Browse files
committed
lint
1 parent 4af35e5 commit 272382b

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

crates/cli/src/metadata.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,10 @@ pub type CommandName = String;
9292
#[serde(rename_all = "PascalCase", tag = "type")]
9393
pub enum CommandDefinition {
9494
#[serde(rename_all = "camelCase")]
95-
ShellScript {
96-
bash: String,
97-
powershell: String,
98-
},
95+
ShellScript { bash: String, powershell: String },
9996
#[serde(rename_all = "camelCase")]
10097
DockerizedCommand {
10198
docker_image: String,
10299
command_args: Vec<String>,
103-
}
100+
},
104101
}

0 commit comments

Comments
 (0)