-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
82 lines (65 loc) · 1.18 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
[bdist_wheel]
universal = 1
[aliases]
test = pytest
[metadata]
license_file = LICENSE
[black]
exclude = "scripts/whitelist.py
[darglint]
docstring_style=sphinx
strictness=short
ignore_regex=
ignore=DAR401
[flake8]
ignore = W503
exclude =
.tox,
.git,
__pycache__,
build,
dist,
*.md,
*.pyc,
*.egg-info,
.cache,
.eggs,
plan4past/__init__.py,
scripts/whitelist.py
max-complexity = 10
max-line-length = 120
[isort]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
[pylint]
disable =
too-many-instance-attributes,
invalid-name,
no-value-for-parameter,
too-many-arguments,
too-many-locals
[pylint.FORMAT]
max-line-length = 120
[mypy]
python_version = 3.10
strict_optional = True
# Per-module options:
[mypy-docker.*]
ignore_missing_imports = True
[mypy-mistune.*]
ignore_missing_imports = True
[mypy-pddl.*]
ignore_missing_imports = True
[mypy-pylogics.*]
ignore_missing_imports = True
[mypy-FDgrounder.*]
ignore_missing_imports = True
# Per-module options for tests dir:
[mypy-pytest]
ignore_missing_imports = True
# Per-script options
[mypy-scripts/whitelist]
ignore_errors = True