refactor(format): enhance formatting tasks with tool existence checks and improved output

This commit is contained in:
HendrikRauh 2026-03-05 23:29:02 +01:00
parent 008c79852b
commit 6e695bd48c
2 changed files with 39 additions and 17 deletions

View file

@ -15,7 +15,6 @@
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
# Use the same esp-idf-full as previously in .envrc
esp-idf = esp-dev.packages.${system}.esp-idf-full;
in
{
@ -24,10 +23,11 @@
esp-idf
pkgs.python3
pkgs.python3Packages.invoke
# Formatting tools
pkgs.clang-tools
pkgs.nodePackages.prettier
# pkgs.nodePackages.svgo
pkgs.nodePackages.svgo
pkgs.black
pkgs.nixfmt
];