-
Notifications
You must be signed in to change notification settings - Fork 233
Expand file tree
/
Copy pathsetup.cfg
More file actions
33 lines (29 loc) · 881 Bytes
/
setup.cfg
File metadata and controls
33 lines (29 loc) · 881 Bytes
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
[flake8]
max-line-length = 100
exclude = .git,__pycache__,build,dist
ignore = E203, W503, D100, D101, D102, D103, D104, D105, D106, D107, D400, F401, F541
# E203: whitespace before ':' (conflicts with black)
# W503: line break before binary operator (conflicts with black)
# D100-D107: Missing docstrings in various places
# D400: First line should end with a period
# F401: Module imported but unused
# F541: f-string without any placeholders
[isort]
profile = black
line_length = 100
multi_line_output = 3
[mypy]
python_version = 3.10
warn_return_any = False
warn_unused_configs = True
disallow_untyped_defs = False
disallow_incomplete_defs = False
check_untyped_defs = False
disallow_untyped_decorators = False
no_implicit_optional = False
strict_optional = False
ignore_errors = True
[mypy.plugins.numpy.*]
follow_imports = skip
[tool:pytest]
testpaths = pylibfranka/tests