Skip to content

Commit f4b0ac3

Browse files
committed
fix(ci): add semgrepignore to exclude false positives
1 parent b49fc18 commit f4b0ac3

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.semgrepignore

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Semgrep ignore file
2+
# https://semgrep.dev/docs/ignoring-files-folders-code/
3+
4+
# Test fixtures and test files
5+
tests/
6+
**/test_*.py
7+
**/*_test.py
8+
9+
# Virtual environments
10+
venv/
11+
.venv/
12+
env/
13+
14+
# Build artifacts
15+
build/
16+
dist/
17+
*.egg-info/
18+
19+
# IDE/Editor
20+
.idea/
21+
.vscode/
22+
23+
# Cache
24+
__pycache__/
25+
.pytest_cache/
26+
.mypy_cache/
27+
28+
# CI/CD
29+
.github/
30+
31+
# Documentation
32+
docs/
33+
34+
# Outputs/Reports
35+
outputs/
36+
reports/
37+
38+
# GUI Frontend (scanned separately)
39+
gui/

0 commit comments

Comments
 (0)