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:
parent
fcc3d3a3b7
commit
c4fead78f2
2 changed files with 4 additions and 4 deletions
|
@ -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 }) => {
|
||||||
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -19,4 +19,4 @@ const themeVars = useThemeVars();
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue