high-energy-55500
02/19/2024, 2:21 PMdocformatter seems to ignore the config i have set in pyproject.toml when running though pants
so e.g. docformatter . will say that there are no required changes, but pants lint :: will have docformatter complain that some lines are too long, because it’s ignoring the line length i’ve got specified in pyproject.toml
[tool.docformatter]
recursive = true
wrap-summaries = 80
wrap-descriptions = 80
style = "google"
I can fix this by adding these arguments manually to args in the [docformatter] section of my pants.toml, but it seems weird that i would need to duplicate the config in 2 placesbroad-processor-92400
02/19/2024, 6:03 PM