summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authortcmal <me@aria.rip>2024-06-21 22:18:08 +0100
committertcmal <me@aria.rip>2024-06-21 22:18:08 +0100
commit7639ceef0108660453f15ebacc3dd074377b5079 (patch)
tree8fc7441d4eb625af3ca4046a20b863ac8f2d0537 /src/main.rs
parent8225beac7bb5e095858e14885ae0184764d74de9 (diff)
fix some lints
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 64e9203..09ef1f2 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -16,6 +16,7 @@
//! In most places, we avoid checking for errors unless we need to see the response to a request.
//! Errors will be caught and logged in the event loop instead. See [`xcb`] documentation for more details.
#![deny(clippy::all, clippy::pedantic, clippy::nursery)]
+#![allow(clippy::must_use_candidate, clippy::missing_errors_doc)]
use clients::ClientState;
use conn_info::Connection;