qutebrowser: lint with ruff (with ALL selected)

This commit is contained in:
Artur Manuel 2025-04-21 12:00:16 +01:00
commit f9c6b206ca
Signed by: amadaluzia
SSH key fingerprint: SHA256:ubvwT66gNUKSsgSzEb2UQnX8pzTq5N+r8eRVYGJJm4Q
12 changed files with 99 additions and 69 deletions

View file

@ -14,11 +14,16 @@
pre-commit = {
check.enable = true;
settings.hooks = {
nixfmt-rfc-style = {
enable = true;
};
nixfmt-rfc-style.enable = true;
nil.enable = true;
shellcheck.enable = true;
statix = {
enable = true;
args = [ "fix" ];
};
deadnix = {
enable = true;
args = [ "-e" ];
};
prettier = {
enable = true;
excludes = [ "flake.lock" ];
@ -26,14 +31,8 @@
ruff.enable = true;
ruff-format.enable = true;
shfmt.enable = true;
deadnix = {
enable = true;
args = [ "-e" ];
};
statix = {
enable = true;
args = [ "fix" ];
};
shellcheck.enable = true;
taplo.enable = true;
};
};