We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 282e578 commit a494322Copy full SHA for a494322
filetreelist/src/filetreeitems.rs
@@ -145,6 +145,8 @@ impl FileTreeItems {
145
let item_path =
146
Path::new(item.info().full_path_str());
147
148
+ //TODO: fix once FP in clippy is fixed
149
+ #[allow(clippy::needless_borrow)]
150
if item_path.starts_with(&path) {
151
item.hide();
152
} else {
src/options.rs
@@ -131,6 +131,8 @@ impl Options {
131
Ok(from_bytes(&buffer)?)
132
}
133
134
135
136
fn save_failable(&self) -> Result<()> {
137
let dir = Self::options_file(&self.repo)?;
138
0 commit comments