mirror of https://github.com/astral-sh/ruff
Fix `logger-objects` documentation (#6238)
Closes https://github.com/astral-sh/ruff/issues/6234.
This commit is contained in:
parent
f45e8645d7
commit
29fb655e04
|
|
@ -323,13 +323,6 @@ pub struct Options {
|
||||||
)]
|
)]
|
||||||
/// The tabulation size to calculate line length.
|
/// The tabulation size to calculate line length.
|
||||||
pub tab_size: Option<TabSize>,
|
pub tab_size: Option<TabSize>,
|
||||||
#[option(
|
|
||||||
default = "None",
|
|
||||||
value_type = "str",
|
|
||||||
example = r#"
|
|
||||||
required-version = "0.0.193"
|
|
||||||
"#
|
|
||||||
)]
|
|
||||||
#[option(
|
#[option(
|
||||||
default = r#"[]"#,
|
default = r#"[]"#,
|
||||||
value_type = "list[str]",
|
value_type = "list[str]",
|
||||||
|
|
@ -354,6 +347,13 @@ pub struct Options {
|
||||||
/// `logging_setup.logger` is treated as a `logging.Logger` object when
|
/// `logging_setup.logger` is treated as a `logging.Logger` object when
|
||||||
/// imported from other modules (e.g., `from logging_setup import logger`).
|
/// imported from other modules (e.g., `from logging_setup import logger`).
|
||||||
pub logger_objects: Option<Vec<String>>,
|
pub logger_objects: Option<Vec<String>>,
|
||||||
|
#[option(
|
||||||
|
default = "None",
|
||||||
|
value_type = "str",
|
||||||
|
example = r#"
|
||||||
|
required-version = "0.0.193"
|
||||||
|
"#
|
||||||
|
)]
|
||||||
/// Require a specific version of Ruff to be running (useful for unifying
|
/// Require a specific version of Ruff to be running (useful for unifying
|
||||||
/// results across many environments, e.g., with a `pyproject.toml`
|
/// results across many environments, e.g., with a `pyproject.toml`
|
||||||
/// file).
|
/// file).
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue