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 54a1241 commit 7c86d53Copy full SHA for 7c86d53
.gitignore
@@ -3,7 +3,6 @@
3
.LSOverride
4
5
.python-version
6
-__pycache__/
7
*.py[cod]
8
*$py.class
9
.venv/
@@ -58,23 +57,40 @@ verify_kzg_proof
58
57
.vscode/launch.json
59
60
# docs
61
-.cache
62
_readthedocs
63
site
64
venv-docs/
65
.pyspelling_en.dict
66
67
-# cached fixture downloads (consume)
+# cache-related
68
cached_downloads/
+.cache
+__pycache__/
69
+.mypy_cache/
70
+.pytest_cache/
71
+.ruff_cache/
72
+
73
74
# pytest report
75
assets
76
*.html
77
78
# Environment
79
env.yaml
80
+.env
81
+.env.*
82
83
# Framework logs
84
logs/
85
+*.log
86
87
+# node
88
+node_modules/
89
+package-lock.json
90
91
# Running github actions locally with act
92
.act_github_vars
93
94
+# temporary files
95
+*.tmp
96
+*.temp
0 commit comments