9 matches across 3 files for error lang:Markdown lang:Markdown lang:Markdown lang:Markdown lang:Markdown lang:Markdown
snippet_mode: auto · sorted by relevance
16
17 - Examples:
18▶ - fix(anthropic): resolve flag parsing error
19 - feat(core): add multi-tenant support
20 - test(openai): update API usage tests
201- [ ] Tests fail when your new logic is broken
202- [ ] Happy path is covered
203▶- [ ] Edge cases and error conditions are tested
204- [ ] Use fixtures/mocks for external dependencies
205- [ ] Tests are deterministic (no flaky tests)
· · ·
209
210- No `eval()`, `exec()`, or `pickle` on user-controlled input
211▶- Proper exception handling (no bare `except:`) and use a `msg` variable for error messages
212- Remove unreachable/commented code before committing
213- Race conditions or resource leaks (file handles, sockets, threads).
· · ·
233
234 Raises:
235▶ InvalidEmailError: If the email address format is invalid.
236 SMTPConnectionError: If unable to connect to email server.
237 """
· · ·
236▶ SMTPConnectionError: If unable to connect to email server.
237 """
238```
201- [ ] Tests fail when your new logic is broken
202- [ ] Happy path is covered
203▶- [ ] Edge cases and error conditions are tested
204- [ ] Use fixtures/mocks for external dependencies
205- [ ] Tests are deterministic (no flaky tests)
· · ·
209
210- No `eval()`, `exec()`, or `pickle` on user-controlled input
211▶- Proper exception handling (no bare `except:`) and use a `msg` variable for error messages
212- Remove unreachable/commented code before committing
213- Race conditions or resource leaks (file handles, sockets, threads).
· · ·
233
234 Raises:
235▶ InvalidEmailError: If the email address format is invalid.
236 SMTPConnectionError: If unable to connect to email server.
237 """
· · ·
236▶ SMTPConnectionError: If unable to connect to email server.
237 """
238```
Search syntax
auth login | both terms (AND is implicit) |
auth OR login | either term |
NOT path:vendor | exclude matches |
"exact phrase" | quoted exact match |
/func\s+Test/ | regex |
handler~1 | fuzzy (Levenshtein 1) |
file:*_test.go | filename glob |
path:pkg/auth/** | full path glob |
lang:go | language filter |
Search any public repo from your terminal
This page calls POST /api/v1/code_search. Same tool, available over MCP for Claude/Cursor/Copilot.