forked from qentinelqi/qweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
69 lines (52 loc) · 1.21 KB
/
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
61
62
63
64
65
66
67
68
69
[flake8]
ignore =
# E501 too long lines
E501,
# E126 continuation line over-indented for hanging indent
E126,
# W503 line break before binary operator
W503
[isort]
known_third_party=mock, pytest, robot, selenium
line_length=100
skip = versioneer.py, QWeb/_version.py
[yapf]
column_limit=100
[metadata]
license_file = LICENSE
[pydocstyle]
ignore =
D100, # allow empty module doctrings
D213, # force multiline docstrings to start immediately after """
D413
[versioneer]
VCS = git
style = pep440-pre
tag_prefix=
versionfile_source = QWeb/_version.py
versionfile_build = QWeb/_version.py
[mypy]
warn_return_any = False
warn_unused_configs = True
[mypy-selenium.*]
ignore_missing_imports = True
[mypy-robot.*]
ignore_missing_imports = True
[mypy-pyautogui.*]
ignore_missing_imports = True
[mypy-cv2.*]
ignore_missing_imports = True
[mypy-pyperclip.*]
ignore_missing_imports = True
[mypy-pynput.keyboard.*]
ignore_missing_imports = True
[mypy-slate3k.*]
ignore_missing_imports = True
[mypy-pdfminer.pdfparser.*]
ignore_missing_imports = True
[mypy-DebugLibrary.*]
ignore_missing_imports = True
[mypy-PIL.*]
ignore_missing_imports = True
[mypy-skimage.metrics.*]
ignore_missing_imports = True