Skip to main content

windjammer_lsp/
lib.rs

1//! Windjammer LSP Library
2//!
3//! This library exposes the Salsa database for benchmarking and testing.
4
5// TODO(v0.35.0): Fix all clippy warnings properly
6// These are temporarily allowed to unblock v0.34.0 release
7#![allow(unused_mut)]
8#![allow(unused_variables)]
9#![allow(dead_code)]
10#![allow(clippy::needless_range_loop)]
11#![allow(clippy::single_match)]
12#![allow(clippy::collapsible_if)]
13#![allow(clippy::format_in_format_args)]
14#![allow(clippy::redundant_closure)]
15#![allow(clippy::iter_nth_zero)]
16#![allow(clippy::collapsible_match)]
17#![allow(clippy::len_zero)]
18#![allow(clippy::absurd_extreme_comparisons)]
19#![allow(clippy::manual_range_contains)]
20
21pub mod cache;
22pub mod database;
23pub mod refactoring;