You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .llm/context.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -250,7 +250,7 @@ Before acting on PR review feedback:
250
250
251
251
- Frameworks: NUnit + Unity Test Framework. Use `[Test]`/`[UnityTest]` as needed.
252
252
- Location: add files under [Tests/Runtime](../Tests/Runtime/)`<Area>/` named `*Tests.cs` with classes `*Tests`.
253
-
- Keep tests independent: prefer a local `MessageBus` and explicit `MessageRegistrationToken` lifecycles.
253
+
- Keep tests independent: prefer a local `MessageBus` and explicit `MessageRegistrationToken` lifecycles. When using `MessageHandler`, set `active = true`. When using `MessageRegistrationToken`, pass the local `MessageBus` to `Create()` and call `Enable()` to activate handlers.
254
254
- Do not use underscores in test function names.
255
255
- Prefer expressive assertions and failure messages so it is clear what exactly is failing when a test fails.
# Game Programming Patterns site returns 415 to automated clients despite valid content
261
+
"^https://gameprogrammingpatterns\\.com/"
262
+
]
263
+
```
264
+
265
+
#### Exclusion Pattern Guidelines
266
+
267
+
- **Use regex anchors**: Start patterns with `^` to match from the beginning of the URL
268
+
- **Escape special characters**: Dots in domain names need `\\.` escaping
269
+
- **Document the reason**: Add a comment explaining why the exclusion exists
270
+
- **Be specific**: Prefer specific URL patterns over broad domain exclusions when possible
271
+
- **Verify first**: Always manually verify the link is actually valid before adding an exclusion
272
+
230
273
### GitHub Actions Version Consistency
231
274
232
275
Workflow files should use consistent action versions across all workflows. For detailed guidance including version update processes and common actions to monitor, see [GitHub Actions Version Consistency](github-actions-version-consistency.md).
@@ -259,9 +302,10 @@ Before committing documentation or skill files:
0 commit comments