1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-08-08 06:55:19 +02:00

fix(commit-memo): resolve linting issues

Fix ESLint violations in commit-memo tool files:
- Sort imports alphabetically (expect, test)
- Prefix unused parameter with underscore (_page)
- Add missing newlines at end of files
This commit is contained in:
Robert Little 2025-08-07 18:46:45 -04:00
parent fcc3d3a3b7
commit c4fead78f2
2 changed files with 4 additions and 4 deletions

View file

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