-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
50 lines (49 loc) · 1.21 KB
/
Copy pathsetup.cfg
File metadata and controls
50 lines (49 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[flake8]
exclude = .venv,examples
ignore=
; Found too many methods: > 7
, WPS214
; Found too many arguments: > 5
, WPS211
; Single-letter public API name (M = RequestMatcher) is intentional
, WPS111
; M import is intentional
, WPS347
; Found `await` in `for` loop
, WPS476
; Found local folder import
, WPS300
; Found wrong metadata variable: __all__
, WPS410
; Found `__init__.py` module with logic
, WPS412
; Found too many module members: > 7
, WPS202
; Found wrong variable name: value
, WPS110
; Found too many await expressions: > 5
, WPS217
; Found nested function
, WPS430
; Found too long name: > 45
, WPS118
; Found using `@staticmethod`
, WPS602
per-file-ignores =
tests/**:
; Found too many expressions: > 9
, WPS213
; Found underscored number name pattern
, WPS114
; Found overused expression: used > 4
, WPS204
; Found module with too many imports: > 12
, WPS201
; Found string literal over-use: > 3
, WPS226
; Magic numbers are fine in tests
, WPS432
; Float comparison is fine in tests
, WPS459
; W503 line-break before binary operator
, W503