Skip to content

Commit 826bc2a

Browse files
committed
Group the sphinx-build options
1 parent 8c8887c commit 826bc2a

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

sphinx_autobuild/build.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,28 @@
77
from colorama import Fore, Style
88

99
SPHINX_BUILD_OPTIONS = (
10+
# general options
1011
("-b", "builder"),
1112
("-a", None),
1213
("-E", None),
13-
("-t", "tag"),
14-
("-d", "path"),
1514
("-j", "N"),
15+
("--jobs", "N"),
16+
# path options
17+
("-d", "path"),
1618
("-c", "path"),
19+
# build configuration options
1720
("-C", None),
1821
("-D", "setting=value"),
1922
("-A", "name=value"),
23+
("-t", "tag"),
2024
("-n", None),
21-
("-N", None),
22-
("--color", None),
25+
# console output options
2326
("-v", None),
2427
("-q", None),
2528
("-Q", None),
29+
("--color", None),
30+
("-N", None),
31+
# warning control options
2632
("-w", "file"),
2733
("--keep-going", None),
2834
("-W", None),

0 commit comments

Comments
 (0)