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
* remaining renamings
* Update server.rs
Co-authored-by: Julian Domke <[email protected]>
* fix: use tokio if available and async-std as fallback
* chore: add test that actually calls the binary
---------
Co-authored-by: Julian Domke <[email protected]>
Copy file name to clipboardExpand all lines: crates/pgt_cli/src/cli_options.rs
+2-2
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ pub struct CliOptions {
48
48
#[bpaf(long("no-errors-on-unmatched"), switch)]
49
49
pubno_errors_on_unmatched:bool,
50
50
51
-
/// Tell PgLT to exit with an error code if some diagnostics emit warnings.
51
+
/// Tell Postgres Tools to exit with an error code if some diagnostics emit warnings.
52
52
#[bpaf(long("error-on-warnings"), switch)]
53
53
puberror_on_warnings:bool,
54
54
@@ -86,7 +86,7 @@ pub struct CliOptions {
86
86
fallback(Severity::default()),
87
87
display_fallback
88
88
)]
89
-
/// The level of diagnostics to show. In order, from the lowest to the most important: info, warn, error. Passing `--diagnostic-level=error` will cause PgLT to print only diagnostics that contain only errors.
89
+
/// The level of diagnostics to show. In order, from the lowest to the most important: info, warn, error. Passing `--diagnostic-level=error` will cause Postgres Tools to print only diagnostics that contain only errors.
0 commit comments