Skip to content

Commit

Permalink
docs: add 'validate' to documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Dec 18, 2024
1 parent ddd42ca commit 1861895
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/users/configuration_file.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Command line interface arguments take precedence over the configuration file.
wrap = "keep" # options: {"keep", "no", INTEGER}
number = false # options: {false, true}
end_of_line = "lf" # options: {"lf", "crlf", "keep"}
validate = true # options: {false, true}
# extensions = [ # options: a list of enabled extensions (default: all installed are enabled)
# "gfm",
# "toc",
Expand Down
2 changes: 1 addition & 1 deletion src/mdformat/_conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

DEFAULT_OPTS = {
"wrap": "keep",
"validate": True,
"number": False,
"end_of_line": "lf",
"validate": True,
"exclude": [],
"plugin": {},
"extensions": None,
Expand Down

0 comments on commit 1861895

Please sign in to comment.