-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
86 lines (68 loc) · 1.7 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[tool:pytest]
DJANGO_SETTINGS_MODULE = hbscorez.settings
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
integration
browser
[flake8]
exclude = .git,__pycache__,*.pyc
max_line_length = 120
[pep8]
max_line_length = 120
[pycodestyle]
max_line_length = 120
[pylama:pycodestyle]
max_line_length = 120
[pylint.MAIN]
load-plugins=pylint_django
extension-pkg-whitelist=lxml
[pylint.FORMAT]
max-line-length=120
[pylint.MESSAGES CONTROL]
disable=raw-checker-failed,
bad-inline-option,
locally-disabled,
file-ignored,
suppressed-message,
useless-suppression,
deprecated-pragma,
use-symbolic-message-instead,
missing-module-docstring,
missing-function-docstring,
missing-class-docstring,
imported-auth-user,
broad-exception-caught,
too-few-public-methods,
too-many-return-statements,
too-many-locals,
too-many-arguments,
duplicate-code,
invalid-name,
[pylint.DJANGO]
django-settings-module=hbscorez.settings
[mypy]
mypy_path = src
show_error_codes = True
enable_error_code =
ignore-without-code
plugins =
mypy_django_plugin.main,
returns.contrib.mypy.returns_plugin
[mypy.plugins.django-stubs]
django_settings_module = hbscorez.settings
[mypy-icalendar]
ignore_missing_imports = True
[mypy-django_registration.*]
ignore_missing_imports = True
[mypy-urllib3.*]
ignore_missing_imports = True
[mypy-sauceclient]
ignore_missing_imports = True
[mypy-selenium.*]
ignore_missing_imports = True
[mypy-captcha.image]
ignore_missing_imports = True
[mypy-django_contact_form.*]
ignore_missing_imports = True
[mypy-fuzzywuzzy.*]
ignore_missing_imports = True