Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Please run the following checks before submitting:
### Documentation

- [ ] Updated README.md (if applicable)
- [ ] Updated ARCHITECTURE.md (if applicable)
Comment thread
Malcolmnixon marked this conversation as resolved.
- [ ] Updated THEORY-OF-OPERATIONS.md (if applicable)
- [ ] Added code examples for new features (if applicable)
- [ ] Updated requirements.yaml (if applicable)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ reviews:
- "src/Auth/**/*.cs"
```

See [ARCHITECTURE.md][link-architecture] for the full design including fingerprinting, evidence
See [THEORY-OF-OPERATIONS.md][link-architecture] for the full design including fingerprinting, evidence
Comment thread
Malcolmnixon marked this conversation as resolved.
Outdated
indexing, and compliance report formats.

## Installation
Expand Down Expand Up @@ -177,5 +177,5 @@ By contributing to this project, you agree that your contributions will be licen
[link-security]: https://sonarcloud.io/dashboard?id=demaconsulting_ReviewMark
[link-nuget]: https://www.nuget.org/packages/DemaConsulting.ReviewMark
[link-guide]: https://github.com/demaconsulting/ReviewMark/blob/main/docs/guide/guide.md
[link-architecture]: https://github.com/demaconsulting/ReviewMark/blob/main/ARCHITECTURE.md
[link-architecture]: https://github.com/demaconsulting/ReviewMark/blob/main/THEORY-OF-OPERATIONS.md
Comment thread
Malcolmnixon marked this conversation as resolved.
Outdated
[link-continuous-compliance]: https://github.com/demaconsulting/ContinuousCompliance
File renamed without changes.
2 changes: 1 addition & 1 deletion src/DemaConsulting.ReviewMark/GlobMatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ internal static IReadOnlyList<string> GetMatchingFiles(string baseDirectory, IRe

// Process patterns in order, maintaining a running set of matched files.
// Each include pattern adds files; each exclude pattern removes files.
// This implements the documented ordered semantics from ARCHITECTURE.md,
// This implements the documented ordered semantics from THEORY-OF-OPERATIONS.md,
// allowing a later include to re-add files removed by an earlier exclude.
var fileSet = new HashSet<string>(StringComparer.Ordinal);
foreach (var pattern in patterns)
Expand Down