Commit a233b20
committed
Fix CI validation: Improve f-string detection and README title
Fixes:
1. Updated CI f-string detection pattern to avoid false positives
- Old: grep -r caught strings like "on/off" (false positive)
- New: More precise regex pattern for actual f-strings
- Pattern looks for f-strings preceded by space, =, (, or comma
- Verified: Catches actual f-strings, ignores false positives
2. Fixed README.md title formatting
- Changed: Missing space after # in title
- To: Proper markdown formatting with ClaudeMCP prefix
Testing:
- Verified pattern does not match false positives
- Verified pattern DOES match actual f-string syntax
- All local CI checks pass1 parent 845b5f1 commit a233b20
2 files changed
Lines changed: 4 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
30 | | - | |
31 | | - | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| |||
0 commit comments