64 lines
1.2 KiB
Nix
64 lines
1.2 KiB
Nix
{ pkgs, ... }:
|
|
{
|
|
# Used to find the project root
|
|
projectRootFile = ".git/config";
|
|
|
|
programs = {
|
|
actionlint.enable = true;
|
|
deadnix.enable = true;
|
|
nixfmt.enable = true;
|
|
prettier.enable = true;
|
|
ruff.check = true;
|
|
ruff.format = true;
|
|
statix.enable = true;
|
|
terraform.enable = true;
|
|
};
|
|
|
|
programs.mypy = {
|
|
enable = true;
|
|
directories = {
|
|
"tasks" = {
|
|
directory = ".";
|
|
files = [ "*tasks.py" ];
|
|
modules = [ ];
|
|
extraPythonPackages = [
|
|
pkgs.python3.pkgs.deploykit
|
|
pkgs.python3.pkgs.invoke
|
|
];
|
|
};
|
|
};
|
|
};
|
|
|
|
settings.global.excludes = [
|
|
"*.age"
|
|
# vendored from external source
|
|
"hosts/build02/packages-with-update-script.nix"
|
|
];
|
|
|
|
settings.formatter = {
|
|
editorconfig-checker = {
|
|
command = pkgs.editorconfig-checker;
|
|
includes = [ "*" ];
|
|
priority = 9; # last
|
|
};
|
|
|
|
# nix
|
|
deadnix.priority = 1;
|
|
statix.priority = 2;
|
|
nixfmt.priority = 3;
|
|
|
|
# python
|
|
ruff-check.priority = 1;
|
|
ruff-format.priority = 2;
|
|
mypy-tasks.priority = 3;
|
|
|
|
prettier = {
|
|
options = [
|
|
"--write"
|
|
"--prose-wrap"
|
|
"never"
|
|
];
|
|
excludes = [ "*secrets.yaml" ];
|
|
};
|
|
};
|
|
}
|