forked from filip-michalsky/SalesGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
60 lines (57 loc) · 789 Bytes
/
setup.cfg
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
51
52
53
54
55
56
57
58
59
60
[flake8]
max-line-length = 120
max-complexity = 20
show-source = true
exclude =
__init__.py
.git
.venv
migrations
models
salesgpt
examples
enable-extensions = G
ignore =
E203
E231
C901
W503
A003
A001
A002
N805
PT004
PT011
PT012
PT019
PT023
D100
D101
D102
D103
D104
D105
D106
D107
D205
D210
D401
C408
PT018
PT019
F821
PT006
PT007
IF100
PT014
G200
R504
I900
application-import-names = api, src
import-order-style = google
inline-quotes = "
per-file-ignores =
wizard/admin/views/**.py:E800, A002
__init__.py:F401
guldan/guldan/pages/*/locators.py:N802
filename_encoding = UTF-8