-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
50 lines (41 loc) · 1021 Bytes
/
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
[bumpversion]
current_version = 0.4.0
commit = True
message = chore: bump version to {new_version}
[flake8]
max-line-length = 120
max-complexity = 18
exclude = .tox/ .venv/ dist/
select = B,C,E,F,W,T4,B9
ignore = E203,W503
show_source = True
[isort]
line_length = 88
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
combine_as_imports = True
default_section = THIRDPARTY
known_first_party = lushlayers,tests,shared
[mypy]
no_implicit_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_unreachable = True
plugins = pydantic.mypy
[mypy-lushlayers.*]
disallow_untyped_defs = True
[tool:pytest]
addopts = --tb=short
testpaths = tests/
[coverage:run]
omit = .tox/*, .venv/*, tests/*
branch = True
[coverage:report]
show_missing = True
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"
[bumpversion:file:lushlayers/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"