From b77e9cbf0864c10bac468abd28eeebea2becf10c Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Wed, 16 Nov 2022 08:54:23 +0100 Subject: [PATCH] ci: flake8, add back general ignore of pydocstyle warnings --- .flake8 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index a3bdb0cb..3c729960 100644 --- a/.flake8 +++ b/.flake8 @@ -3,11 +3,12 @@ # E: style errors # W: style warnings # C: complexity +# D: docstring warnings (unused pydocstyle extension) # F401: module imported but unused # F403: import * # F811: redefinition of unused `name` from line `N` # F841: local variable assigned but never used -ignore = E, C, W, F401, F403, F811, F841 +ignore = E, C, W, D, F401, F403, F811, F841 builtins = c, get_config exclude = .cache,