forked from lucasamorimca/codeql-solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
80 lines (64 loc) · 1.46 KB
/
Copy path.gitignore
File metadata and controls
80 lines (64 loc) · 1.46 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# Rust
target/
**/*.rs.bk
# CodeQL
.cache/
.codeql/
*.bqrs
*.sarif
databases/
# Nix
/result
/result-*
.direnv/
# IDEs
.idea/
.vscode/
*.swp
# OS
.DS_Store
Thumbs.db
# Build artifacts
*.log
# cargo-cyclonedx output
/extractor/bom.json
*.cdx.json
# Generated from the tree-sitter grammar by `codeql-extractor-solidity generate`.
# Regenerated on every build, so kept out of git to avoid churn (relation order
# is nondeterministic). Run the build/setup steps to produce them.
/ql/lib/solidity.dbscheme
/ql/lib/codeql/solidity/ast/internal/TreeSitter.qll
/extractor-pack/solidity.dbscheme
# Compiled extractor binary, built from ./extractor and placed during setup.
/extractor-pack/tools/codeql-extractor-solidity
/extractor-pack/tools/linux64/
/extractor-pack/tools/darwin-arm64/
# Claude / AI
.claude/
.opencode/
plans/
AGENTS.md
CLAUDE.md
release-manifest.json
# Python
__pycache__/
# Example corpus (cloned third-party repos) and generated databases
/contracts/
/vault-db/
# Sourcify corpus, databases and query results (README puts them at the repo root)
/corpus/
/dbs/
/results/
/fnlist/
# Sourcify parquet exports (large data, downloaded via sourcify/download_parquet.py)
*.parquet
*.parquet.part
# Extracted Solidity sources (output of sourcify/extract_compilation.py), any depth
sourcify/**/*.sol
/sourcify/extracted
# Test database built from tests/
/tests-db/
# Security queries for unreleased solc bugs, and their corpora.
/queries/analysis/security*
/tests/security*
/bug-*