File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased
44<!-- Add all new changes here. They will be moved under a version at release -->
5- * ` CHG ` When analyzing the literal table, only the first 100 items are analyzed at most.
6- * ` CHG ` When checking type matching for union types, only the first 100 items are checked at most.
5+ * ` CHG ` when analyzing the literal table, only the first 100 items are analyzed at most
6+ * ` CHG ` when checking type matching for union types, only the first 100 items are checked at most
7+ * ` FIX ` Update ` --help ` message.
78* ` FIX ` --check now respects ignoreDir setting
89* ` FIX ` incorrect argument skip pattern for ` --check_out_path= ` , which incorrectly skips the next argument
910
Original file line number Diff line number Diff line change @@ -55,18 +55,27 @@ local args = {
5555 type = ' string' ,
5656 description = [[
5757 Generate documentation from a workspace.
58- The files will be output in your log path.
58+ The files will be written to the documentation output path passed
59+ in --doc_out_path.
5960 ]] ,
6061 example = [[ --doc=C:/Users/Me/Documents/myLuaProject/]]
6162 },
6263 [' --doc_out_path' ] = {
6364 type = ' string' ,
6465 description = [[
6566 The path to output generated documentation at.
67+ If --doc_out_path is missing, the documentation will be written
68+ to the current directory.
6669 See --doc for more info.
6770 ]] ,
6871 example = [[ --doc_out_path=C:/Users/Me/Documents/myLuaProjectDocumentation]]
6972 },
73+ [' --doc_update' ] = {
74+ type = ' string' ,
75+ description = [[
76+ Update existing documentation files at the given path.
77+ ]]
78+ },
7079 [' --logpath' ] = {
7180 type = ' string' ,
7281 description = [[
You can’t perform that action at this time.
0 commit comments