Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
b723d3e
docs: add CHANGELOG.md with version history and feature list
dominikschulz Feb 17, 2026
d90908c
docs: add comprehensive godoc comments to all utils.go functions
dominikschulz Feb 17, 2026
f15ee0f
test: add comprehensive globMatch tests
dominikschulz Feb 17, 2026
26cb979
docs: enhance Config struct and method documentation
dominikschulz Feb 17, 2026
2985336
docs: enhance Configs struct and public methods documentation
dominikschulz Feb 17, 2026
a928ff1
docs: create CONTRIBUTING.md with development guidelines
dominikschulz Feb 17, 2026
eacfd04
docs: add examples directory with 6 practical usage examples
dominikschulz Feb 17, 2026
ff0253f
docs: create ARCHITECTURE.md with comprehensive design documentation
dominikschulz Feb 17, 2026
731ec1f
test: add comprehensive error handling tests and fix example build
dominikschulz Feb 17, 2026
2e6cf0b
fix: improve code quality in error handling tests
dominikschulz Feb 17, 2026
ada28a4
docs: add comprehensive examples to doc.go with 5 usage patterns
dominikschulz Feb 17, 2026
2cc771a
test: add comprehensive include-specific error tests
dominikschulz Feb 17, 2026
f90d2a1
test: add edge case config coverage
dominikschulz Feb 17, 2026
7b6fe27
docs: expand README with comprehensive usage guide
dominikschulz Feb 17, 2026
3e7bb60
style: fix linting issues
dominikschulz Feb 17, 2026
71eed16
docs: add comprehensive CONFIG_FORMAT.md reference
dominikschulz Feb 17, 2026
231a3dd
docs: add comprehensive DEVELOPMENT.md guide
dominikschulz Feb 17, 2026
56790bb
docs: add documentation to formatKeyValue and parseSectionHeader priv…
dominikschulz Feb 17, 2026
0bb165a
docs: add godoc comments to remaining private functions in config.go
dominikschulz Feb 17, 2026
f8324a6
test: add comprehensive platform and concurrency test coverage
dominikschulz Feb 17, 2026
0f28faf
docs: add godoc to globalConfigFile function in configs.go
dominikschulz Feb 17, 2026
d19d8a1
test: fix linting nits in concurrency tests
dominikschulz Feb 17, 2026
29f3207
feat: add optional improvements (typed errors, benchmarks, make targets)
dominikschulz Feb 17, 2026
0ce77b9
docs: finalize checklist items and coverage documentation
dominikschulz Feb 17, 2026
6964fea
Clean up documentation artifacts
dominikschulz Feb 17, 2026
f93a3e3
Address review comments
dominikschulz Feb 17, 2026
b5faaf0
Fix codequality and Go 1.25 features
dominikschulz Feb 17, 2026
55b0868
Convert Windows path separators
dominikschulz Feb 17, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,10 @@ jobs:
echo ${GOROOT}
env

- name: Build and Unit Test
run: go test ./...
- name: Unit Test with Coverage
run: |
go test -coverprofile=coverage.out ./...
go tool cover -func=coverage.out | tail -1

windows:
runs-on: windows-latest
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
coverage.*

Loading
Loading