Skip to content

Commit dedb880

Browse files
[doc all-options] dict need to be sorted again
1 parent d3d9cd8 commit dedb880

File tree

2 files changed

+950
-950
lines changed

2 files changed

+950
-950
lines changed

doc/exts/pylint_options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def _write_options_page(options: OptionsDataDict, linter: PyLinter) -> None:
171171
]
172172
found_extensions = False
173173

174-
for checker, checker_options in options.items():
174+
for checker, checker_options in sorted(options.items()):
175175
if not found_extensions and checker_options[0].extension:
176176
sections.append(get_rst_title("Extensions", "^"))
177177
found_extensions = True

0 commit comments

Comments
 (0)