this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: add typos and shfmt to treefmt

+11 -1
+5
.config/typos.toml
··· 1 + [files] 2 + extend-exclude = [ 3 + "target/", 4 + "*.lock", 5 + ]
+1 -1
CHANGELOG.md
··· 128 128 129 129 ### Testing 130 130 131 - - Add some tar cli tests with target inferrence 131 + - Add some tar cli tests with target inference 132 132 - Use nextest to run tests 133 133 134 134 ### Build
+5
flake.nix
··· 132 132 alejandra.enable = true; 133 133 prettier.enable = true; 134 134 rustfmt.enable = true; 135 + shfmt.enable = true; 136 + typos = { 137 + enable = true; 138 + configFile = "./.config/typos.toml"; 139 + }; 135 140 }; 136 141 }; 137 142