- corvée: met à jour les dépendances
- corvée: utilise treefmt pour le formatage
- corvée: nettoie les règles
This commit is contained in:
gcch 2026-04-08 08:43:12 +02:00
commit 32ed83d772
8 changed files with 222 additions and 115 deletions

View file

@ -3,13 +3,16 @@ set shell := ["/usr/bin/fish", "-c"]
# Formate le code.
format:
bun prettier \
--cache --cache-location ".cache/prettiercache" \
--config "cfg/prettier.config.ts" \
--ignore-path "cfg/prettierignore" \
--ignore-unknown \
--parallel-workers 8 \
--write .
dprint fmt --config ~/.config/dprint/dprint.jsonc
--cache --cache-location ".cache/prettiercache" \
--config "cfg/prettier.config.ts" \
--ignore-path "cfg/prettierignore" \
--ignore-unknown \
--parallel-workers 8 \
--write .
treefmt \
--config-file ~/.config/treefmt/treefmt.toml \
--tree-root . \
.
# Met à jour les dépendances NPM.
update: