Skip to content

Commit

Permalink
flake.lock: update
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Jul 12, 2024
1 parent 8fdc927 commit 3d22f2b
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 95 deletions.
116 changes: 58 additions & 58 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -14,49 +14,51 @@
};

server = {
settings = {
cargo = {
buildScripts.enable = true;
features = "all";
};
default_settings = {
rust-analyzer = {
cargo = {
buildScripts.enable = true;
features = "all";
};

diagnostics = {
enable = true;
styleLints.enable = true;
};
diagnostics = {
enable = true;
styleLints.enable = true;
};

checkOnSave = true;
check = {
command = "clippy";
features = "all";
};
checkOnSave = true;
check = {
command = "clippy";
features = "all";
};

files = {
excludeDirs = [
".cargo"
".direnv"
".git"
"node_modules"
"target"
];
};
files = {
excludeDirs = [
".cargo"
".direnv"
".git"
"node_modules"
"target"
];
};

inlayHints = {
bindingModeHints.enable = true;
closureStyle = "rust_analyzer";
closureReturnTypeHints.enable = "always";
discriminantHints.enable = "always";
expressionAdjustmentHints.enable = "always";
implicitDrops.enable = true;
lifetimeElisionHints.enable = "always";
rangeExclusiveHints.enable = true;
};
inlayHints = {
bindingModeHints.enable = true;
closureStyle = "rust_analyzer";
closureReturnTypeHints.enable = "always";
discriminantHints.enable = "always";
expressionAdjustmentHints.enable = "always";
implicitDrops.enable = true;
lifetimeElisionHints.enable = "always";
rangeExclusiveHints.enable = true;
};

procMacro = {
enable = true;
};
procMacro = {
enable = true;
};

rustc.source = "discover";
rustc.source = "discover";
};
};
};
};
Expand Down

0 comments on commit 3d22f2b

Please sign in to comment.