Compare commits

..

1 commit

Author SHA1 Message Date
0be52794ad
WIP: refactor: port to JS
Some checks failed
/ check (treefmt) (push) Successful in 4s
/ report-size (push) Failing after 1s
/ report-download-check (push) Has been skipped
This should hopefully reduce the complexity of the action
2025-07-10 23:58:30 +02:00
2 changed files with 4 additions and 3 deletions

View file

@ -1,5 +1,4 @@
# See: https://prettier.io/docs/en/configuration # See: https://prettier.io/docs/en/configuration
printWidth: 80 printWidth: 80
tabWidth: 2 tabWidth: 2
useTabs: false useTabs: false

View file

@ -26,10 +26,12 @@
# Setup formatters # Setup formatters
treefmt = { treefmt = {
# Ignore images # Ignore images
settings.global.excludes = [ "*.png" "dist/"]; settings.global.excludes = [
"*.png"
"dist/*"
];
projectRootFile = "flake.nix"; projectRootFile = "flake.nix";
programs = { programs = {
mdformat.enable = true;
nixfmt.enable = true; nixfmt.enable = true;
shfmt.enable = true; shfmt.enable = true;
shellcheck.enable = true; shellcheck.enable = true;