ruff: dont require docstring to end in punctuation and allow empty docstring (for now)

main
Marshall Hallenbeck 2023-10-12 15:11:51 -04:00
parent 2b50e9b86b
commit f812ea1b4a
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ build-backend = "poetry.core.masonry.api"
# McCabe complexity (`C901`) by default.
# Other options: N (pep8-naming), D (pydocstyle)
select = ["E", "F", "D"]
ignore = [ "E501", "F405", "F841", "D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107", "D203", "D204", "D212", "D213", "D400"]
ignore = [ "E501", "F405", "F841", "D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107", "D203", "D204", "D212", "D213", "D400", "D415", "D419"]
# Allow autofix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]