From 13f6a07a4ea7823572a37a7d07ae9504b2b0b81b Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Wed, 27 Apr 2022 07:48:03 -0700 Subject: [PATCH] Add ignore-decorators to simplify future PRs. --- python/.flake8 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/.flake8 b/python/.flake8 index d4d762dd50f..667875030cc 100644 --- a/python/.flake8 +++ b/python/.flake8 @@ -16,5 +16,7 @@ ignore = # pydocstyle is invoked from pre-commit. Therefore this exclusion list must # also be maintained in the pre-commit config file. match-dir = ^(?!(ci|cpp|conda|docs|java|notebooks|dask_cudf|cudf_kafka|custreamz|tests)).*$ +# Allow missing docstrings for docutils +ignore-decorators = .*(docutils|doc_apply|copy_docstring).* select = D30