Restructured text fixes so that pydoctor would return without an error

This commit is contained in:
Julian Stirling 2025-07-09 23:55:46 +01:00
parent 58b056988a
commit a84a916719
31 changed files with 269 additions and 256 deletions

View file

@ -118,10 +118,31 @@ select = [
"C90", # McCabe complexity!
"NPY", # Numpy linting
"N", # PEP8 naming
# "D", # Docstring checks these may need to be added gradually
"D", # Docstring checks these may need to be added gradually
"ERA001", # Commented out code!
]
ignore = [
"E501" # Ignore long lines for now
"E501", # Ignore long lines for now
"D203", # incompatible with D204
"D213", # incompatible with D212
# Below are checkers to be turned on gradually
"D212",
"D205",
"D415",
"D400",
"D200",
"D404",
"D401",
# These should be turned on before this MR is complete
"D100",
"D102",
"D101",
"D103",
"D104",
"D105",
"D107",
]
[tool.ruff.lint.pydocstyle]
property-decorators = ["labthings_fastapi.thing_property", "labthings_fastapi.thing_setting"]