Skip to content

Commit 8806b10

Browse files
committed
Add sarif-infer-versionControlProvenance.py
1 parent b6b071a commit 8806b10

File tree

7 files changed

+1185
-599
lines changed

7 files changed

+1185
-599
lines changed

scripts/es-sarif/Makefile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
.PHONY: format check install help
2+
3+
check:
4+
black --check --diff *.py
5+
6+
compile:
7+
python3 -m py_compile *.py
8+
9+
format:
10+
black *.py
11+
12+
help:
13+
@echo "Available targets:"
14+
@echo " install - Install black formatter"
15+
@echo " format - Format all Python files in this directory"
16+
@echo " check - Check formatting without making changes"
17+
18+
install:
19+
pip install -r requirements.txt
20+

0 commit comments

Comments
 (0)