-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
52 lines (46 loc) · 862 Bytes
/
Copy pathsetup.cfg
File metadata and controls
52 lines (46 loc) · 862 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[coverage:run]
source = src
omit =
*/tests/*
*/test_*.py
*/__pycache__/*
*/venv/*
*/env/*
*/ai_service_old.py
[coverage:report]
precision = 2
show_missing = True
skip_covered = False
[coverage:html]
directory = htmlcov
[flake8]
max-line-length = 120
exclude =
.git,
__pycache__,
venv,
env,
.venv,
*.egg-info,
.pytest_cache,
htmlcov,
src/ai_service_old.py
ignore = E203,E501,W503
per-file-ignores =
__init__.py:F401
[isort]
profile = black
line_length = 120
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
[mypy]
python_version = 3.11
warn_return_any = False
warn_unused_configs = True
disallow_untyped_defs = False
ignore_missing_imports = True
check_untyped_defs = False
no_implicit_optional = False