[pylintrc] Enforce Google docstring format

This commit is contained in:
Samuel Marks 2020-12-06 09:27:30 +11:00
parent acdf3c04fc
commit 4d3d4e339c
No known key found for this signature in database
GPG Key ID: 5B8FE231F3478A38

View File

@ -19,7 +19,7 @@ persistent=yes
# List of plugins (as comma separated values of python modules names) to load,
# usually to register additional checkers.
load-plugins=
load-plugins=pylint.extensions.docparams
[MESSAGES CONTROL]
@ -316,6 +316,7 @@ deprecated-members=string.atof,string.atoi,string.atol,string.capitalize,string.
[DOCSTRING]
default-docstring-type=google
# List of exceptions that do not need to be mentioned in the Raises section of
# a docstring.
ignore-exceptions=AssertionError,NotImplementedError,StopIteration,TypeError