mirror of https://github.com/astral-sh/ruff
Gate `schemars` skip under feature flag (#4514)
This commit is contained in:
parent
15cb21a6f4
commit
ab303f4e09
|
|
@ -191,7 +191,7 @@ pub struct Options {
|
||||||
///
|
///
|
||||||
/// This option has been **deprecated** in favor of `unfixable` since its usage is now
|
/// This option has been **deprecated** in favor of `unfixable` since its usage is now
|
||||||
/// interchangeable with `unfixable`.
|
/// interchangeable with `unfixable`.
|
||||||
#[schemars(skip)]
|
#[cfg_attr(feature = "schemars", schemars(skip))]
|
||||||
pub extend_unfixable: Option<Vec<RuleSelector>>,
|
pub extend_unfixable: Option<Vec<RuleSelector>>,
|
||||||
#[option(
|
#[option(
|
||||||
default = "[]",
|
default = "[]",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue