Rename ra_flycheck -> flycheck

This commit is contained in:
Aleksey Kladov 2020-06-25 09:13:46 +02:00
parent 5a184fe855
commit 0ec5d4f55c
8 changed files with 31 additions and 30 deletions

View file

@ -6,10 +6,10 @@
use std::{convert::TryFrom, sync::Arc};
use crossbeam_channel::{unbounded, Receiver};
use flycheck::{CheckTask, FlycheckConfig, FlycheckHandle};
use lsp_types::Url;
use parking_lot::RwLock;
use ra_db::{CrateId, SourceRoot, VfsPath};
use ra_flycheck::{CheckTask, FlycheckConfig, FlycheckHandle};
use ra_ide::{Analysis, AnalysisChange, AnalysisHost, CrateGraph, FileId};
use ra_project_model::{CargoWorkspace, ProcMacroClient, ProjectWorkspace, Target};
use stdx::format_to;