Skip to content

Commit

Permalink
chore: Fix clippy lints for headless CLI build
Browse files Browse the repository at this point in the history
  • Loading branch information
theduke committed Jan 29, 2024
1 parent 5ecd2e5 commit 0751cfc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions lib/cli/src/store.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
//! Common module with common used structures across different
//! commands.
#[allow(unused_imports)]
// NOTE: A lot of this code depends on feature flags.
// To not go crazy with annotations, some lints are disablefor the whole
// module.
#![allow(dead_code, unused_imports, unused_variables)]

use std::path::PathBuf;
use std::string::ToString;
#[allow(unused_imports)]
use std::sync::Arc;

use anyhow::{bail, Result};
Expand Down

0 comments on commit 0751cfc

Please sign in to comment.