Skip to content

Commit 1a14f0b

Browse files
committed
chore: clean up repo by removing files that should be gitignored
Remove tracked files that belong in .gitignore: - docs/ (internal planning documents, not official Documentation/) - claudedocs/ (draft ADRs, superseded by Documentation/Developer/Adr/) - .conformance-reports/ (generated reports) - package-lock.json (not needed for TYPO3 extensions) Add .gitleaks.toml to allowlist false positives in: - Tests/Unit/Service/SecretDetectionServiceTest.php (fake API keys for testing the secret detection service itself) - .php-cs-fixer.cache (file content hashes in git history) Update .gitignore with new entries for the above paths. Signed-off-by: Sebastian Mendel <info@sebastianmendel.de>
1 parent 02f6df6 commit 1a14f0b

37 files changed

+16
-16124
lines changed

.conformance-reports/conformance_20260109_123155.md

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

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,23 @@
99
.DS_Store
1010
Thumbs.db
1111

12-
# Build artifacts (future)
12+
# Build artifacts
1313
/vendor/
1414
/var/
1515
/.Build/
1616
/public/
1717
composer.lock
18+
package-lock.json
1819

1920
# Rust (future)
2021
/rust/target/
2122
*.so
2223

24+
# Generated / internal docs
25+
/docs/
26+
/claudedocs/
27+
/.conformance-reports/
28+
2329
# Testing
2430
/.phpunit.result.cache
2531
/coverage/

.gitleaks.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[extend]
2+
useDefault = true
3+
4+
[allowlist]
5+
description = "Allow test fixtures and build cache false positives"
6+
paths = [
7+
'''Tests/Unit/Service/SecretDetectionServiceTest\.php''',
8+
'''\.php-cs-fixer\.cache''',
9+
]

0 commit comments

Comments
 (0)