You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+12-14
Original file line number
Diff line number
Diff line change
@@ -1,54 +1,52 @@
1
1
# Quiet
2
2
3
-
When refactoring or working in some intermediate state, Cargo can end up spamming you with a lot of errors or warnings
4
-
that you don't really care about. It would be nice to filter out these messages until you actually care about them.
3
+
When refactoring or working in some intermediate state, Cargo can end up spamming you with a lot of errors or warnings that you don't really care about. It would be nice to filter out these messages until you actually care about them.
5
4
6
-
Quiet lets you do this by only showing the number of errors you want. Quiet can also limit errors to only a file you
7
-
specify.
5
+
Quiet lets you do this by only showing the number of errors you want. Quiet can also limit errors to only a file you specify.
8
6
9
7
10
8
## Usage
11
9
12
10
```
13
-
quiet 0.1.11
14
-
15
11
Reduce Cargo's compiler information output
16
12
17
-
Usage: quiet [OPTIONS] --errors <ERRORS>
13
+
Usage: quiet [OPTIONS] --items <ITEMS>
18
14
19
15
Options:
20
-
--errors <ERRORS> The number of errors and/or warnings to display
16
+
--items <ITEMS> The number of items to show. This includes errors and warnings to display. By default only errors are shown. Use --show-warnings to include warnings. Values range from 0 to 255
21
17
--show-warnings Flag to include warnings in the output
22
-
--file-filter <FILE_FILTER> The file (if any) to filter on Example: --file-filter main.rs
18
+
--file-filter <FILE_FILTER> The file (if any) to filter on. Example: --file-filter main.rs
23
19
-h, --help Print help information
24
20
-V, --version Print version information
25
-
26
21
```
27
22
28
23
Cargo output should be passed to Quiet through the following format:
Also look at the [qcompile](https://github.com/ssanj/quiet/blob/main/qcompile), [qcompile-test](https://github.com/ssanj/quiet/blob/main/qcompile-test) and [qrun-test](https://github.com/ssanj/quiet/blob/main/qrun-test) sample scripts in this repository.
0 commit comments