Commit dc6ad9d
committed
fix: resolve final 2 clippy uninlined_format_args in JS analysis
- Fix format string in extract_hook_dependencies method
- Fix format string in lifecycle method detection
- All remaining clippy warnings now resolved across entire workspace
Fixed format strings:
- Line 1422: format!("{}[^;]*?", hook_name) -> format!("{hook_name}[^;]*?")
- Line 1461: format!("{}s*", method) -> format!("{method}s*")
Full workspace clippy now passes without any warnings.
Addresses CI Quality & Security check failures completely.1 parent 08d6571 commit dc6ad9d
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1419 | 1419 | | |
1420 | 1420 | | |
1421 | 1421 | | |
1422 | | - | |
| 1422 | + | |
1423 | 1423 | | |
1424 | 1424 | | |
1425 | 1425 | | |
| |||
1458 | 1458 | | |
1459 | 1459 | | |
1460 | 1460 | | |
1461 | | - | |
| 1461 | + | |
1462 | 1462 | | |
1463 | 1463 | | |
1464 | 1464 | | |
| |||
0 commit comments