-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
60 lines (50 loc) · 809 Bytes
/
Copy path.gitignore
File metadata and controls
60 lines (50 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.egg-info/
.pytest_cache/
.coverage
.tox/
.mypy_cache/
.ruff_cache/
.venv/
venv/
env/
ENV/
.env
.env.*
!.env.example
dist/
build/
*.egg
.idea/
.vscode/
*.swp
.DS_Store
# local_scan.sh writes reports here (ignored, but kept for the user)
.scan-reports/
# Stray top-level reports if any tool is run from the repo root manually
bandit-report.json
semgrep-report.json
trufflehog-report.json
pip-audit-report.txt
*.log
eval/.cache/
eval/cloned_repos/
# LaTeX build artefacts (we DO commit IEEEtran.cls and the compiled PDF)
paper/*.aux
paper/*.log
paper/*.out
paper/*.toc
paper/*.bbl
paper/*.blg
paper/*.synctex.gz
paper/*.fdb_latexmk
paper/*.fls
# Example app's local SQLite DB
example-project/*.db
example-project/*.db-wal
example-project/*.db-shm
node_modules/