9 matches across 3 files for error lang:Markdown
snippet_mode: grep · 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
200- [ ] Tests fail when your new logic is broken
201- [ ] Happy path is covered
202▶- [ ] Edge cases and error conditions are tested
203- [ ] Use fixtures/mocks for external dependencies
204- [ ] Tests are deterministic (no flaky tests)
· · ·
208
209- No `eval()`, `exec()`, or `pickle` on user-controlled input
210▶- Proper exception handling (no bare `except:`) and use a `msg` variable for error messages
211- Remove unreachable/commented code before committing
212- Race conditions or resource leaks (file handles, sockets, threads).
· · ·
232
233 Raises:
234▶ InvalidEmailError: If the email address format is invalid.
235 SMTPConnectionError: If unable to connect to email server.
236 """
· · ·
235▶ SMTPConnectionError: If unable to connect to email server.
236 """
237```
200- [ ] Tests fail when your new logic is broken
201- [ ] Happy path is covered
202▶- [ ] Edge cases and error conditions are tested
203- [ ] Use fixtures/mocks for external dependencies
204- [ ] Tests are deterministic (no flaky tests)
· · ·
208
209- No `eval()`, `exec()`, or `pickle` on user-controlled input
210▶- Proper exception handling (no bare `except:`) and use a `msg` variable for error messages
211- Remove unreachable/commented code before committing
212- Race conditions or resource leaks (file handles, sockets, threads).
· · ·
232
233 Raises:
234▶ InvalidEmailError: If the email address format is invalid.
235 SMTPConnectionError: If unable to connect to email server.
236 """
· · ·
235▶ SMTPConnectionError: If unable to connect to email server.
236 """
237```
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.