We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1e7267 commit 4da768eCopy full SHA for 4da768e
flycheck-rust.el
@@ -25,12 +25,20 @@
25
26
;;; Commentary:
27
28
-;; Improve Rust support in Flycheck by configuring Flycheck automatically in
29
-;; Cargo projects.
30
-
31
-;;;; Setup
32
33
-;; (add-hook 'flycheck-mode-hook #'flycheck-rust-setup)
+;; This Flycheck extension configures Flycheck automatically for the current
+;; Cargo project.
+;;
+;; # Setup
+;; (add-hook 'flycheck-mode-hook #'flycheck-rust-setup)
34
35
+;; # Usage
36
37
+;; Just use Flycheck as usual in your Rust/Cargo projects.
38
39
+;; Note: You must run `cargo build` initially to install all dependencies. If
40
+;; you add new dependencies to `Cargo.toml` you need to run `cargo build`
41
+;; again. Otherwise you will see spurious errors about missing crates.
42
43
;;; Code:
44
0 commit comments