-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
46 lines (40 loc) · 1.03 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
[isort]
profile = black
[flake8]
ignore = W503,E203,E722,E501
max-line-length = 88
exclude=configs
[pylint.MASTER]
ignore=configs
[pylint.MESSAGES CONTROL]
disable=missing-docstring,
missing-function-docstring,
too-many-arguments,
too-many-instance-attributes,
fixme,
unspecified-encoding,
duplicate-code,
too-many-locals,
too-few-public-methods,
cyclic-import,
bare-except,
use-dict-literal,
no-name-in-module # skimage is still causing issues
extension-pkg-whitelist=pydantic
[pylint.TYPECHECK]
# List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E1101 when accessed. Python regular
# expressions are accepted.
generated-members=numpy.*,torch.*,skimage.*
ignored-modules=ale_py
[tool:pytest]
asyncio_mode=auto
filterwarnings =
ignore::DeprecationWarning
ignore::UserWarning
ignore::PendingDeprecationWarning
env =
TESTING=1
USE_CACHE=1
log_cli = 1
log_cli_level = INFO