-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
62 lines (50 loc) · 1.34 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
# pytest pycodestyle configuration
[tool:pytest]
# Function starting with the following pattern are considered for test cases.
python_functions=test_
[pylama]
linters = pycodestyle,pyflakes
ignore = D203,
# pytest pycodestyle configuration
codestyle_max_line_length = 88
codestyle_ignore = E302 W503 E203 E501 E265 E402 E251 E211
codestyle_exclude =
docs/core/conf.py
docs/nlu/conf.py
rasa/core/policies/tf_utils.py
rasa/core/policies/__init__.py
filterwarnings =
ignore::ResourceWarning:ruamel[.*]
log_cli = true
log_cli_level = WARNING
[pylama:pycodestyle]
max-line-length = 88
exclude = ../models,./logs,./data,./checkpoints
[pycodestyle]
max-line-length = 88
exclude = ../models,./logs,./data,./checkpoints
[flake8]
max-line-length = 88
ignore = W503, E121, E126, E211, E225, E501, E203, E402, F811
[mypy]
ignore_missing_imports = False
# mypy is having issues finding stubs for the following libraries:
[mypy-requests.*]
ignore_missing_imports = True
[mypy-tabulate.*]
ignore_missing_imports = True
[mypy-dateutil.*]
ignore_missing_imports = True
[mypy-aiofiles.*]
ignore_missing_imports = True
[mypy-redis.*]
ignore_missing_imports = True
[isort]
line_length = 88
use_parentheses = True
include_trailing_comma = True
multi_line_output = 3
force_single_line = True
[metadata]
description-file = README.md
license_file = LICENSE.txt