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:
parent
fcc3d3a3b7
commit
c4fead78f2
@ -1,4 +1,4 @@
|
|||||||
import { test, expect } from '@playwright/test';
|
import { expect, test } from '@playwright/test';
|
||||||
|
|
||||||
test.describe('Tool - Conventional Commit Cheatsheet', () => {
|
test.describe('Tool - Conventional Commit Cheatsheet', () => {
|
||||||
test.beforeEach(async ({ page }) => {
|
test.beforeEach(async ({ page }) => {
|
||||||
@ -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 }) => {
|
||||||
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
Loading…
Reference in New Issue
Block a user