1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-08-08 15:05:18 +02:00

fix(commit-memo): resolve linting issues

Fix ESLint violations in commit-memo tool files:
- Revert prefix unused parameter with underscore (_page)
This commit is contained in:
Robert Little 2025-08-07 18:51:40 -04:00
parent c4fead78f2
commit 556408ad91

View file

@ -9,7 +9,7 @@ test.describe('Tool - Conventional Commit Cheatsheet', () => {
await expect(page).toHaveTitle('Conventional Commit Cheatsheet - IT Tools'); await expect(page).toHaveTitle('Conventional Commit Cheatsheet - IT Tools');
}); });
test('', async ({ _page }) => { test('', async ({ page }) => {
}); });
}); });