fix(extras/rust): fix config key for files.exclude

It seems like the key changed it's name from `files.excludeDirs` to `files.exclude` at some point.
At least that is the (only) name that can be found in the docs now: https://rust-analyzer.github.io/book/configuration.html (ctrl+f for "files.exclude")

Also add `".jj"` as an excluded directory, which is like `".git"` but for jujutsu (https://jj-vcs.github.io/jj/latest/cli-reference/#jj-git-init).
This commit is contained in:
Felix Rath 2025-02-21 15:10:27 +01:00 committed by GitHub
parent 541b83276e
commit b2829abeaf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -93,9 +93,10 @@ return {
},
},
files = {
excludeDirs = {
exclude = {
".direnv",
".git",
".jj",
".github",
".gitlab",
"bin",