ruff: dont require docstring to end in punctuation and allow empty docstring (for now)
parent
2b50e9b86b
commit
f812ea1b4a
|
@ -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"]
|
||||
|
|
Loading…
Reference in New Issue