@@ -32,12 +32,6 @@ targets = ["docs", "src", "tests"]
3232skips = [" */test_*.py" ]
3333
3434
35- [tool .black ]
36- line-length = 120
37- include = ' \.py$' # regex -> single-quotes
38- target-version = [" py311" ]
39-
40-
4135[tool .coverage .html ]
4236directory = " var/html/coverage"
4337
@@ -60,19 +54,13 @@ branch = true
6054data_file = " var/cache/coverage/coverage.db" # defaults to .coverage
6155
6256
63- [tool .flake8 ]
64- max_line_length = 121
65- per_file_ignores = [
66- " __init__.py:F401" , # F401: imported but unused
67- ]
68-
6957
70- [tool .isort ]
71- include_trailing_comma = true # corresponds to -tc flag
72- known_third_party = []
73- line_length = 120 # corresponds to -w flag
74- multi_line_output = 3 # corresponds to -m flag
75- skip_glob = ' ^((?!py$).)*$' # isort all Python files
58+ # [tool.isort]
59+ # include_trailing_comma = true # corresponds to -tc flag
60+ # known_third_party = []
61+ # line_length = 120 # corresponds to -w flag
62+ # multi_line_output = 3 # corresponds to -m flag
63+ # skip_glob = '^((?!py$).)*$' # isort all Python files
7664
7765
7866[tool .mypy ]
@@ -89,9 +77,6 @@ show_error_codes = true
8977show_error_context = true
9078
9179
92- [tool .nox ]
93- envdir = " var/cache/nox"
94-
9580[project ]
9681name = " libranet-logging"
9782version = " 1.5.3"
@@ -296,6 +281,5 @@ ignore = [
296281
297282[tool .uv ]
298283package = true
299- # default-groups = ["all"]
300284default-groups = " all"
301285required-version = " >=0.6.8"
0 commit comments