Skip to content

Commit 3b193c8

Browse files
committed
ci: Ignore some quality warnings
1 parent d0340b0 commit 3b193c8

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

config/flake8.ini

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ ignore =
5050
W0611
5151
# lazy formatting for logging calls
5252
W1203
53+
# missing parameter in docstring
54+
DAR101
5355
# short name
5456
VNE001
55-
# f-strings
56-
WPS305
5757
# common variable names (too annoying)
5858
WPS110
5959
# redundant with W0622 (builtin override), which is more precise about line number
@@ -82,14 +82,20 @@ ignore =
8282
WPS226
8383
# too many public instance attributes
8484
WPS230
85+
# too complex function
86+
WPS231
8587
# too complex module
8688
WPS232
8789
# too complex f-string
8890
WPS237
91+
# f-strings
92+
WPS305
8993
# too cumbersome, asks to write class A(object)
9094
WPS306
9195
# multi-line parameters (incompatible with Black)
9296
WPS317
97+
# multiline annotation
98+
WPS320
9399
# multi-line strings (incompatible with attributes docstrings)
94100
WPS322
95101
# implicit string concatenation

0 commit comments

Comments
 (0)