- Add TestFormatPorts covering empty, single, and multiple ports - Add TestMain_VersionFlag_VerifiesOutput checking version variables - Add TestFlagParsing verifying CLI flag parsing behavior - Fix .gitignore to only ignore root-level binary, not cmd/ja4sentinel/ Implements testing.policy.requirements.test_skeletons from architecture.yml Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
58 lines
566 B
Plaintext
58 lines
566 B
Plaintext
# AIDER
|
|
.aider*
|
|
.qwen/
|
|
.qwenignore
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.o
|
|
|
|
# Go
|
|
*.test
|
|
*.out
|
|
coverage.out
|
|
coverage.html
|
|
go.work
|
|
go.work.sum
|
|
|
|
# Docker
|
|
*.dockerfile.local
|
|
docker-compose.override.yml
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
*.bak
|
|
|
|
# Local config (copie de config.yml.example)
|
|
config.yml
|
|
|
|
# Runtime artifacts
|
|
*.pid
|
|
*.sock
|
|
|
|
# Integration test artifacts
|
|
test-results/
|
|
|
|
# Test artifacts
|
|
packaging/test/*.deb
|
|
packaging/test/*.rpm
|
|
|
|
# Binary (root level only)
|
|
/ja4sentinel
|
|
ja4sentinel-linux-amd64
|