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.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 }) => {
|
||||
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
@ -19,4 +19,4 @@ const themeVars = useThemeVars();
|
||||
border-radius: 4px;
|
||||
overflow: auto;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user