Skip to content

Commit 7c86d53

Browse files
authored
toolings(fix): improved gitignore (#1842)
1 parent 54a1241 commit 7c86d53

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

.gitignore

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
.LSOverride
44

55
.python-version
6-
__pycache__/
76
*.py[cod]
87
*$py.class
98
.venv/
@@ -58,23 +57,40 @@ verify_kzg_proof
5857
.vscode/launch.json
5958

6059
# docs
61-
.cache
6260
_readthedocs
6361
site
6462
venv-docs/
6563
.pyspelling_en.dict
6664

67-
# cached fixture downloads (consume)
65+
# cache-related
6866
cached_downloads/
67+
.cache
68+
__pycache__/
69+
.mypy_cache/
70+
.pytest_cache/
71+
.ruff_cache/
72+
73+
6974
# pytest report
7075
assets
7176
*.html
7277

7378
# Environment
7479
env.yaml
80+
.env
81+
.env.*
7582

7683
# Framework logs
7784
logs/
85+
*.log
86+
87+
# node
88+
node_modules/
89+
package-lock.json
7890

7991
# Running github actions locally with act
8092
.act_github_vars
93+
94+
# temporary files
95+
*.tmp
96+
*.temp

0 commit comments

Comments
 (0)