vcs+rg: fix ignore globs
This commit is contained in:
parent
71660705f0
commit
a7aa9c7a72
2 changed files with 11 additions and 5 deletions
|
@ -53,10 +53,13 @@
|
||||||
ripgrep = {
|
ripgrep = {
|
||||||
enable = true;
|
enable = true;
|
||||||
arguments = [
|
arguments = [
|
||||||
"--glob=!.git/*"
|
"--glob=!**/.cache/*"
|
||||||
"--glob=!.jj/*"
|
"--glob=!**/.direnv/*"
|
||||||
"--glob=!result/*"
|
"--glob=!**/.git/*"
|
||||||
"--glob=!target/*"
|
"--glob=!**/.jj/*"
|
||||||
|
"--glob=!**/{node_modules,.npm,dist}/*"
|
||||||
|
"--glob=!**/target/*"
|
||||||
|
"--glob=!**/result/*"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -116,9 +116,12 @@
|
||||||
"*.so"
|
"*.so"
|
||||||
"*.swp"
|
"*.swp"
|
||||||
".direnv"
|
".direnv"
|
||||||
|
".env"
|
||||||
".idea"
|
".idea"
|
||||||
|
".nixos-test-history"
|
||||||
".null-ls_*"
|
".null-ls_*"
|
||||||
"result"
|
"/result*"
|
||||||
|
"/target"
|
||||||
];
|
];
|
||||||
|
|
||||||
signing = {
|
signing = {
|
||||||
|
|
Loading…
Reference in a new issue