From bdc16242594e2ad9dea5ad8591417765b6bcc41c Mon Sep 17 00:00:00 2001 From: Dmitry Borodin <11879032+Dmitry-Borodin@users.noreply.github.com> Date: Sun, 17 Oct 2021 18:59:36 +0200 Subject: [PATCH 1/2] Add reference to another doc with explanation Add reference to another doc that explains which repository should be passed in this command since this is not covered in the command help itself. --- doc/basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/basics.md b/doc/basics.md index ff2e0417435b..6da90ebf5f55 100644 --- a/doc/basics.md +++ b/doc/basics.md @@ -93,7 +93,7 @@ cargo dev update_lints cargo dev new_lint # automatically formatting all code before each commit cargo dev setup git-hook -# (experimental) Setup Clippy to work with IntelliJ-Rust +# (experimental) Setup Clippy to work with IntelliJ-Rust. Details here: https://github.com/rust-lang/rust-clippy/blob/master/CONTRIBUTING.md#intellij-rust cargo dev setup intellij ``` From 7246731ad87b78b02a7074154e41a7ef1ea84296 Mon Sep 17 00:00:00 2001 From: Dmitry Borodin Date: Tue, 19 Oct 2021 20:33:39 +0200 Subject: [PATCH 2/2] made description of intellij a link by moving outside of code block. --- doc/basics.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/basics.md b/doc/basics.md index 6da90ebf5f55..57a90a924ec3 100644 --- a/doc/basics.md +++ b/doc/basics.md @@ -93,9 +93,10 @@ cargo dev update_lints cargo dev new_lint # automatically formatting all code before each commit cargo dev setup git-hook -# (experimental) Setup Clippy to work with IntelliJ-Rust. Details here: https://github.com/rust-lang/rust-clippy/blob/master/CONTRIBUTING.md#intellij-rust +# (experimental) Setup Clippy to work with IntelliJ-Rust cargo dev setup intellij ``` +More about intellij command usage and reasons [here](../CONTRIBUTING.md#intellij-rust) ## lintcheck `cargo lintcheck` will build and run clippy on a fixed set of crates and generate a log of the results.