Enable extra warnings required by rust-lang/rust

This commit is contained in:
Amos Wenger 2022-07-20 14:59:42 +02:00
parent 0ded8e734f
commit 23d25a3094
38 changed files with 84 additions and 0 deletions

View file

@ -1,6 +1,9 @@
//! Driver for rust-analyzer.
//!
//! Based on cli flags, either spawns an LSP server, or runs a batch analysis
#![warn(rust_2018_idioms, unused_lifetimes, semicolon_in_expressions_from_macros)]
mod logger;
mod rustc_wrapper;

View file

@ -9,6 +9,8 @@
//! The `cli` submodule implements some batch-processing analysis, primarily as
//! a debugging aid.
#![warn(rust_2018_idioms, unused_lifetimes, semicolon_in_expressions_from_macros)]
pub mod cli;
#[allow(unused)]

View file

@ -8,6 +8,8 @@
//! specific JSON shapes here -- there's little value in such tests, as we can't
//! be sure without a real client anyway.
#![warn(rust_2018_idioms, unused_lifetimes, semicolon_in_expressions_from_macros)]
mod sourcegen;
mod tidy;
mod testdir;