Disable selective warnings to make cargo check happy

This commit is contained in:
Conrad Irwin 2023-11-02 13:28:58 -06:00
parent 269a72464d
commit 8283909dfd
6 changed files with 20 additions and 10 deletions

View file

@ -1,3 +1,6 @@
#![allow(unused_variables, dead_code, unused_mut)]
// todo!() this is to make transition easier.
// Allow binary to be called Zed for a nice application menu when running executable directly
#![allow(non_snake_case)]
@ -24,7 +27,7 @@ use settings::{
default_settings, handle_settings_file_changes, watch_config_file, Settings, SettingsStore,
};
use simplelog::ConfigBuilder;
use smol::{future::FutureExt, process::Command};
use smol::process::Command;
use std::{
env,
ffi::OsStr,