From c3e307739b61b5881a9970b6071e935e786fbdc9 Mon Sep 17 00:00:00 2001 From: Brent Westbrook Date: Fri, 4 Jul 2025 12:00:19 -0400 Subject: [PATCH] update option docs --- crates/ty/docs/configuration.md | 2 +- crates/ty_project/src/metadata/options.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/ty/docs/configuration.md b/crates/ty/docs/configuration.md index 504fdd3976..f2e013539b 100644 --- a/crates/ty/docs/configuration.md +++ b/crates/ty/docs/configuration.md @@ -474,7 +474,7 @@ Defaults to `full`. **Default value**: `full` -**Type**: `full | concise | azure` +**Type**: `full | concise | azure | json | json-lines` **Example usage** (`pyproject.toml`): diff --git a/crates/ty_project/src/metadata/options.rs b/crates/ty_project/src/metadata/options.rs index e8a9ee83d4..df9c0cf62f 100644 --- a/crates/ty_project/src/metadata/options.rs +++ b/crates/ty_project/src/metadata/options.rs @@ -990,7 +990,7 @@ pub struct TerminalOptions { #[serde(skip_serializing_if = "Option::is_none")] #[option( default = r#"full"#, - value_type = "full | concise | azure", + value_type = "full | concise | azure | json | json-lines", example = r#" output-format = "concise" "#