-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
36 lines (35 loc) · 879 Bytes
/
Copy pathsetup.cfg
File metadata and controls
36 lines (35 loc) · 879 Bytes
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
[flake8]
exclude = .venv
ignore=
; 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 long ``try`` body length: > 1
, WPS229
; 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 wrong keyword: nonlocal
, WPS420
per-file-ignores =
examples/**:
; Found too many expressions: > 9
, WPS213
; Found underscored number name pattern
, WPS114
; Found overused expression: ['POST']; used > 4
, WPS204
; Found module with too many imports: > 12
, WPS201
; Found string literal over-use: > 3
, WPS226