Skip to content

Commit 8d44430

Browse files
committed
minor cleanup
1 parent 92e21aa commit 8d44430

4 files changed

Lines changed: 13 additions & 27 deletions

File tree

.env.template

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ PYLINTHOME='__CWD__/var/cache/pylint'
4747
TMP='__CWD__/var/tmp'
4848
TMPDIR='__CWD__/var/tmp'
4949
TEMP='__CWD__/var/tmp'
50-
TEMPDIR='__CWD__/var/tmp'
5150

5251
# debugging
5352
# used by python-interpreter, cfr. https://docs.python.org/3/using/cmdline.html#environment-variables

.gitignore

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,9 @@
1616
#
1717
# - If there is a / at the end of the pattern then the pattern will only match directories,
1818
# otherwise the pattern can match both files and directories.
19-
19+
#
2020
# - Symlinks are always files, even if they point to a dir. So never put a / at the end.
2121

22-
# archived files
23-
/_archive/
2422

2523
# dev-symlinks to .venv to make bin/python work
2624
/bin
@@ -32,7 +30,7 @@
3230
.claude
3331

3432
# exclude actual virtual-environment
35-
/.venv/
33+
/.venv*
3634

3735
# distribution / packaging
3836
/dist/

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
"recommendations": [
44
// sorted alphabetically
55

6+
// https://www.aikido.dev/blog/free-ide
7+
// https://help.aikido.dev/ide-plugins/supported-ides/vs-code-plugin
8+
// marketplace: https://marketplace.visualstudio.com/items?itemName=aikidosecurity.aikido
9+
"aikidosecurity.aikido",
10+
611
"bungcip.better-toml",
712

813
// support for the Ruff linter.

pyproject.toml

Lines changed: 6 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,6 @@ targets = ["docs", "src", "tests"]
3232
skips = ["*/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]
4236
directory = "var/html/coverage"
4337

@@ -60,19 +54,13 @@ branch = true
6054
data_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
8977
show_error_context = true
9078

9179

92-
[tool.nox]
93-
envdir = "var/cache/nox"
94-
9580
[project]
9681
name = "libranet-logging"
9782
version = "1.5.3"
@@ -296,6 +281,5 @@ ignore = [
296281

297282
[tool.uv]
298283
package = true
299-
# default-groups = ["all"]
300284
default-groups = "all"
301285
required-version = ">=0.6.8"

0 commit comments

Comments
 (0)