diff --git a/.mise/tasks/update-shorthand-repo b/.mise/tasks/update-shorthand-repo index e5145221c..d2193f93f 100755 --- a/.mise/tasks/update-shorthand-repo +++ b/.mise/tasks/update-shorthand-repo @@ -58,7 +58,6 @@ echo "]));" >>src/default_shorthands.rs cat <>src/default_shorthands.rs -#[rustfmt::skip] pub static TRUSTED_SHORTHANDS: Lazy> = Lazy::new(|| HashSet::from([ EOF diff --git a/src/default_shorthands.rs b/src/default_shorthands.rs index 040ff42dd..3bc1e653a 100644 --- a/src/default_shorthands.rs +++ b/src/default_shorthands.rs @@ -764,30 +764,32 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("zprint", "https://github.com/carlduevel/asdf-zprint.git"), ])); -#[rustfmt::skip] -pub static TRUSTED_SHORTHANDS: Lazy> = - Lazy::new(|| HashSet::from([ - "boundary", - "consul", - "dt", - "elixir", - "hub", - "levant", - "nomad", - "nomad-pack", - "packer", - "pipenv", - "poetry", - "rabbitmq", - "sentinel", - "serf", - "terraform", - "terraform-ls", - "tfc-agent", - "tiny", - "tuist", - "usage", - "vault", - "vlt", - "waypoint", -])); +pub static TRUSTED_SHORTHANDS: Lazy> = Lazy::new(|| { + HashSet::from([ + "boundary", + "consul", + "dt", + "elixir", + "flarectl", + "hub", + "jq", + "levant", + "nomad", + "nomad-pack", + "packer", + "pipenv", + "poetry", + "rabbitmq", + "sentinel", + "serf", + "terraform", + "terraform-ls", + "tfc-agent", + "tiny", + "tuist", + "usage", + "vault", + "vlt", + "waypoint", + ]) +});