mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-20 10:45:51 +02:00
flake-modules/dev: exclude generated files from typos hook
This commit is contained in:
parent
849c33c283
commit
b4f71a9330
1 changed files with 4 additions and 1 deletions
|
@ -70,7 +70,10 @@
|
||||||
|
|
||||||
settings.hooks = {
|
settings.hooks = {
|
||||||
treefmt.enable = true;
|
treefmt.enable = true;
|
||||||
typos.enable = true;
|
typos = {
|
||||||
|
enable = true;
|
||||||
|
excludes = [ "generated/*" ];
|
||||||
|
};
|
||||||
maintainers = {
|
maintainers = {
|
||||||
enable = true;
|
enable = true;
|
||||||
name = "maintainers";
|
name = "maintainers";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue