1[pydocstyle]
2ignore =
3  D401,
4# First line should be in imperative mood; try rephrasing
5  D202,
6# No blank lines allowed after function docstring
7  D203,
8# 1 blank line required before class docstring
9  D213
10# Multi-line docstring summary should start at the second line
11match = (?!_version|test_)*.py
12