Skip to content

Commit af09314

Browse files
committed
silence wildcard import clippy warning
1 parent ee3dc49 commit af09314

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
// TODO: read wakatime config
99
// TODO: do not log when out of dev folder
1010

11-
use ls_types::{notification::Notification as _, request::Request as _, *};
11+
#![expect(clippy::wildcard_imports, reason = "ls_types has no prelude")]
12+
use ls_types::*;
13+
use ls_types::{notification::Notification as _, request::Request as _};
1214
use lsp_server::{Connection, ExtractError, Message, Notification, Request, RequestId};
1315

1416
/// Open the Wakatime web dashboard in a browser

0 commit comments

Comments
 (0)