Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ reviews:
- "src/Auth/**/*.cs"
```

See [ARCHITECTURE.md][link-architecture] for the full design including fingerprinting, evidence
indexing, and compliance report formats.
See [THEORY-OF-OPERATIONS.md][link-theory-of-operations] for the theory of operations including fingerprinting,
evidence 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-theory-of-operations]: https://github.com/demaconsulting/ReviewMark/blob/main/THEORY-OF-OPERATIONS.md
[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