Commit d7985af
fix: replace complex mdformat regex with simple exclude pattern
The complex negative lookahead regex was still causing issues in CI
environments. Replaced it with the simpler and more reliable approach
using separate 'files' and 'exclude' patterns.
Changes:
- files: '\.md$' (matches all markdown files)
- exclude: '^(\.venv|venv|__pycache__|\.git|node_modules|\.egg-info|\.pytest_cache|\.mypy_cache|\.ruff_cache|dist|build)/'
This approach is more readable, easier to maintain, and works consistently
across different environments.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent aad6aac commit d7985af
1 file changed
Lines changed: 2 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
38 | | - | |
| 38 | + | |
| 39 | + | |
39 | 40 | | |
40 | 41 | | |
41 | 42 | | |
| |||
0 commit comments