Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions crates/ruff_workspace/src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2302,6 +2302,9 @@ pub struct IsortOptions {

/// Order imports by type, which is determined by case, in addition to
/// alphabetically.
///
/// Note that this option takes precedence over the
/// [`case-sensitive`](#lint_isort_case-sensitive) setting when enabled.
#[option(
default = r#"true"#,
value_type = "bool",
Expand All @@ -2324,6 +2327,9 @@ pub struct IsortOptions {
pub force_sort_within_sections: Option<bool>,

/// Sort imports taking into account case sensitivity.
///
/// Note that the [`order-by-type`](#lint_isort_order-by-type) setting will
/// take precedence over this one when enabled.
#[option(
default = r#"false"#,
value_type = "bool",
Expand Down
4 changes: 2 additions & 2 deletions ruff.schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.