chore: set up more checks through Nix
This commit is contained in:
parent
0b561cbbc3
commit
0fa3e8f485
1 changed files with 11 additions and 0 deletions
11
flake.nix
11
flake.nix
|
|
@ -40,6 +40,9 @@
|
||||||
# TOML
|
# TOML
|
||||||
check-toml.enable = true;
|
check-toml.enable = true;
|
||||||
|
|
||||||
|
# YAML
|
||||||
|
check-yaml.enable = true;
|
||||||
|
|
||||||
# Nix
|
# Nix
|
||||||
deadnix.enable = true;
|
deadnix.enable = true;
|
||||||
flake-checker.enable = true;
|
flake-checker.enable = true;
|
||||||
|
|
@ -57,6 +60,14 @@
|
||||||
pkg-config
|
pkg-config
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
rustfmt.enable = true;
|
||||||
|
cargo-check = {
|
||||||
|
enable = true;
|
||||||
|
extraPackages = with pkgs; [
|
||||||
|
pkg-config
|
||||||
|
openssl
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
# SQL
|
# SQL
|
||||||
sqlfluff = {
|
sqlfluff = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue