Skip to content

Commit

Permalink
corrected the parameter(--no-ignore) interpretation (#547)
Browse files Browse the repository at this point in the history
Co-authored-by: tanghong11 <tanghong11@meituan.com>
  • Loading branch information
cemiboou and tanghong11 authored Oct 24, 2024
1 parent 179e293 commit f000fda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ Flags:
--no-gitmodule disables .gitmodules file logic
--no-hborder remove horizontal borders between sections
--no-ignore disables .ignore file logic
--no-large ignore files over certain byte and line size set by max-line-count and max-byte-count
--no-large ignore files over certain byte and line size set by large-line-count and large-byte-count
--no-min ignore minified files in output (implies --min)
--no-min-gen ignore minified or generated files in output (implies --min-gen)
--no-scc-ignore disables .sccignore file logic
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ func main() {
&processor.NoLarge,
"no-large",
false,
"ignore files over certain byte and line size set by max-line-count and max-byte-count",
"ignore files over certain byte and line size set by large-line-count and large-byte-count",
)
flags.BoolVar(
&processor.IncludeSymLinks,
Expand Down

0 comments on commit f000fda

Please sign in to comment.