Skip to content

Commit

Permalink
Add missing parameter to gh-pages #3316
Browse files Browse the repository at this point in the history
  • Loading branch information
Nereboss committed Nov 21, 2023
1 parent bf9110a commit 5b4e520
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class ParserDialog {
KInquirer.promptInput(message = "Do you want to exclude file/folder according to regex pattern?", default = "", hint = "regex1, regex2.. (leave empty if you don't want to exclude anything)")

val fileExtensions: String =
KInquirer.promptInput(message = "Do you only want to parse files with specific file-extensions? ", default = "", hint = ".fileType1, .fileType2, fileType1, fileType2... (leave empty to include all file-extensions)")
KInquirer.promptInput(message = "Do you only want to parse files with specific file-extensions? ", default = "", hint = "fileType1, fileType2... (leave empty to include all file-extensions)")

val withoutDefaultExcludes: Boolean =
KInquirer.promptConfirm(message = "Do you want to include build, target, dist, resources and out folders as well as files/folders starting with '.'?", default = false)
Expand Down
1 change: 1 addition & 0 deletions gh-pages/_docs/04-03-rawtextparser.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ This parser analyzes code regardless of the programming language used to generat
| `--tab-width=<tabWidth>` | tab width used (estimated if not provided) |
| `--without-default-excludes` | includes build, target, dist, resources and out folders as well as files/folders starting with '.' |
| `-e, --exclude=<exclude>` | exclude file/folders according to regex pattern |
| `-fe, --file-extensions` | include only files with the specified file extensions (include all if not specified) |
| `-h, --help` | displays help |
| `-m, --metrics[=<metrics>...]` | metrics to be computed (select all if not specified) |
| `-o, --output-file=<outputFile>` | output File (or empty for stdout) |
Expand Down

0 comments on commit 5b4e520

Please sign in to comment.