We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8298c0a commit 9099e82Copy full SHA for 9099e82
.dockerignore
@@ -31,7 +31,11 @@ venv/
31
env/
32
ENV/
33
.venv
34
+
35
+# Environment files (all variants)
36
.env
37
+.env.*
38
+!.env.example
39
40
# IDEs
41
.vscode/
@@ -52,6 +56,7 @@ htmlcov/
52
56
.nox/
53
57
.mypy_cache/
54
58
.ruff_cache/
59
+.import_linter_cache/
55
60
test-results/
61
coverage.xml
62
@@ -120,3 +125,15 @@ mutants/
120
125
# Node modules (will be built in Docker)
121
126
gui/node_modules/
122
127
gui/dist/
128
129
+# SSH keys (prevent accidental exposure)
130
+*id_rsa*
131
+*id_ed25519*
132
+*.pem
133
+*.key
134
135
+# Private directory
136
+private/
137
138
+# Secrets baseline
139
+.secrets.baseline
0 commit comments