Skip to content

Commit bc440c1

Browse files
committed
chore: remove quality/ scorecard directory and associated Makefile targets
1 parent f1c7144 commit bc440c1

4 files changed

Lines changed: 4 additions & 101 deletions

File tree

.gitignore

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,3 @@ coverage.out
5050
coverage.html
5151
*.coverprofile
5252

53-
# Quality scorecard — ignore generated coverage artifact, track the rest
54-
quality/coverage.out
55-
# quality/score.json — tracked (committed score snapshots)
56-
# quality/scorecard.yaml — tracked (config)
57-
# quality/findings.md — tracked (human-readable report)

Makefile

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.PHONY: test-unit test-integration test-e2e test-destructive test-smoke test-smoke-prebuilt test-coverage test-all \
22
test-vm test-vm-run test-vm-quick test-vm-release test-vm-full \
33
install-hooks uninstall-hooks \
4-
quality quality-lint quality-security quality-diff
4+
quality-lint quality-security
55

66
BINARY_NAME=openboot
77
BINARY_PATH=./$(BINARY_NAME)
@@ -116,23 +116,11 @@ uninstall-hooks:
116116
done
117117

118118
# =============================================================================
119-
# Quality scorecard
119+
# Code quality
120120
# =============================================================================
121121

122-
quality: ## Run full quality scorecard
123-
@bash scripts/quality-score.sh
124-
125-
quality-lint: ## Run golangci-lint only
122+
quality-lint: ## Run golangci-lint
126123
golangci-lint run ./...
127124

128-
quality-security: ## Run gosec only
125+
quality-security: ## Run gosec
129126
gosec ./...
130-
131-
quality-diff: ## Show score change vs last run then re-run scorecard
132-
@if [ -f quality/score.json ]; then \
133-
echo "Last recorded score:"; \
134-
python3 -c "import json,sys; d=json.load(open('quality/score.json')); print(' total_score:', d['total_score'], ' (', d['timestamp'], ' sha:', d['git_sha'], ')')" 2>/dev/null || \
135-
grep -E '"total_score"|"timestamp"|"git_sha"' quality/score.json | sed 's/^/ /'; \
136-
echo; \
137-
fi
138-
@bash scripts/quality-score.sh

quality/score.json

Lines changed: 0 additions & 32 deletions
This file was deleted.

quality/scorecard.yaml

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)