1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2025-02-17 05:35:06 +01:00
home-manager/tests/modules/programs/ruff/ruff.nix

20 lines
398 B
Nix
Raw Permalink Normal View History

{
programs.ruff = {
enable = true;
settings = {
line-length = 100;
per-file-ignores = { "__init__.py" = [ "F401" ]; };
lint = {
select = [ "E4" "E7" "E9" "F" ];
ignore = [ ];
};
};
};
nmt.script = ''
assertFileExists home-files/.config/ruff/ruff.toml
assertFileContent home-files/.config/ruff/ruff.toml ${./expected.toml}
'';
}