Commit f7d3e1d
committed
fix: ignore underscore-prefixed unused args in eslint
The compositionGuardPlugin added in 5d89a69 declares _view/_event
handler args that are intentionally unused, prefixed with _ per the
existing convention. no-unused-vars only had varsIgnorePattern, so
these args failed the lint step and broke CI on main. Add
argsIgnorePattern: '^_' to honor the prefix convention.
https://claude.ai/code/session_01KndTBoSS4psob1CTs9q5cs1 parent 5d89a69 commit f7d3e1d
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
0 commit comments