poetry2nix/dev/treefmt.nix

32 lines
585 B
Nix
Raw Normal View History

2023-10-26 12:11:28 +13:00
{ pkgs, ... }: {
# Used to find the project root
projectRootFile = "flake.lock";
settings.formatter = {
nix = {
command = "sh";
options = [
"-eucx"
''
${pkgs.lib.getExe pkgs.nixpkgs-fmt} "$@"
''
"--"
];
includes = [ "*.nix" ];
excludes = [ ];
};
python = {
command = "sh";
options = [
"-eucx"
''
${pkgs.lib.getExe pkgs.python3.pkgs.black} "$@"
''
"--" # this argument is ignored by bash
];
includes = [ "*.py" ];
};
};
}