From ab554877768ae0403849a15a37e6c480e46809de Mon Sep 17 00:00:00 2001 From: Oleksandr Pravdyvyi Date: Fri, 6 Jun 2025 11:32:18 +0300 Subject: [PATCH] fix: taplo fmt template excluded --- ci_scripts/lint-ubuntu.sh | 43 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/ci_scripts/lint-ubuntu.sh b/ci_scripts/lint-ubuntu.sh index d30ef674..06d90168 100644 --- a/ci_scripts/lint-ubuntu.sh +++ b/ci_scripts/lint-ubuntu.sh @@ -6,4 +6,45 @@ source env.sh cargo install taplo-cli --locked cargo fmt -- --check -taplo fmt --check \ No newline at end of file +cd accounts + taplo fmt --check +cd .. +cd common + taplo fmt --check +cd .. +cd consensus + taplo fmt --check +cd .. +cd mempool + taplo fmt --check +cd .. +cd networking + taplo fmt --check +cd .. +cd node_core + taplo fmt --check +cd .. +cd node_rpc + taplo fmt --check +cd .. +cd node_runner + taplo fmt --check +cd .. +cd sc_core + taplo fmt --check +cd .. +cd sequencer_core + taplo fmt --check +cd .. +cd storage + taplo fmt --check +cd .. +cd utxo + taplo fmt --check +cd .. +cd vm + taplo fmt --check +cd .. +cd zkvm + taplo fmt --check +cd .. \ No newline at end of file