refactor: Move Top-level heading into ruff_dev

This commit is contained in:
Martin Fischer 2023-02-15 21:35:32 +01:00 committed by Charlie Marsh
parent 8195873cdf
commit b0d72c47b4
2 changed files with 3 additions and 3 deletions

View file

@ -40,7 +40,7 @@ fn emit_field(output: &mut String, name: &str, field: &OptionField, group_name:
}
pub fn main(args: &Args) -> Result<()> {
let mut output = String::new();
let mut output: String = "### Top-level\n\n".into();
let mut sorted_options = Options::get_available_options();
sorted_options.sort_by_key(|(name, _)| *name);