@@ -1089,52 +1089,52 @@ Report generation
10891089If these flags are set, mypy will generate a report in the specified
10901090format into the specified directory.
10911091
1092- .. option :: --any-exprs-report DIR
1092+ .. option :: --any-exprs-report OUTPUT_DIR
10931093
10941094 Causes mypy to generate a text file report documenting how many
10951095 expressions of type ``Any `` are present within your codebase.
10961096
1097- .. option :: --cobertura-xml-report DIR
1097+ .. option :: --cobertura-xml-report OUTPUT_DIR
10981098
10991099 Causes mypy to generate a Cobertura XML type checking coverage report.
11001100
11011101 To generate this report, you must either manually install the `lxml `_
11021102 library or specify mypy installation with the setuptools extra
11031103 ``mypy[reports] ``.
11041104
1105- .. option :: --html-report / --xslt-html-report DIR
1105+ .. option :: --html-report / --xslt-html-report OUTPUT_DIR
11061106
11071107 Causes mypy to generate an HTML type checking coverage report.
11081108
11091109 To generate this report, you must either manually install the `lxml `_
11101110 library or specify mypy installation with the setuptools extra
11111111 ``mypy[reports] ``.
11121112
1113- .. option :: --linecount-report DIR
1113+ .. option :: --linecount-report OUTPUT_DIR
11141114
11151115 Causes mypy to generate a text file report documenting the functions
11161116 and lines that are typed and untyped within your codebase.
11171117
1118- .. option :: --linecoverage-report DIR
1118+ .. option :: --linecoverage-report OUTPUT_DIR
11191119
11201120 Causes mypy to generate a JSON file that maps each source file's
11211121 absolute filename to a list of line numbers that belong to typed
11221122 functions in that file.
11231123
1124- .. option :: --lineprecision-report DIR
1124+ .. option :: --lineprecision-report OUTPUT_DIR
11251125
11261126 Causes mypy to generate a flat text file report with per-module
11271127 statistics of how many lines are typechecked etc.
11281128
1129- .. option :: --txt-report / --xslt-txt-report DIR
1129+ .. option :: --txt-report / --xslt-txt-report OUTPUT_DIR
11301130
11311131 Causes mypy to generate a text file type checking coverage report.
11321132
11331133 To generate this report, you must either manually install the `lxml `_
11341134 library or specify mypy installation with the setuptools extra
11351135 ``mypy[reports] ``.
11361136
1137- .. option :: --xml-report DIR
1137+ .. option :: --xml-report OUTPUT_DIR
11381138
11391139 Causes mypy to generate an XML type checking coverage report.
11401140
0 commit comments