Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Commit

Permalink
fix incorrectly interpretation of pydoclint exclude dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Apr 18, 2024
1 parent ead9833 commit 7ef029d
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -168,23 +168,7 @@ add_ignore = "D100,D101,D102,D103,D104,D105,D107,D200,D202,D204,D212,D401"
# https://github.com/jsh9/pydoclint
# https://jsh9.github.io/pydoclint/how_to_config.html
style = "google"
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| __pycache__
| _build
| buck-out
| build
| dist
| env
| venv
| node_modules
)/
'''
exclude = '\.git|\.hg|\.mypy_cache|\.tox|.?v?env|__pycache__|_build|buck-out|dist|node_modules'
# don't require type hints, since we have them in the signature instead (don't duplicate)
arg-type-hints-in-docstring = false
arg-type-hints-in-signature = true
Expand Down

0 comments on commit 7ef029d

Please sign in to comment.