Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sndrs committed Sep 4, 2024
1 parent 749f2c9 commit 01deb5b
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions libs/@guardian/libs/playwright.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// eslint-disable-next-line import/named -- this is a false positive
import { defineConfig, devices } from '@playwright/test';

/**
Expand Down
1 change: 1 addition & 0 deletions libs/@guardian/libs/playwright/e2e/sourcepoint-aus.spec.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// eslint-disable-next-line import/named -- this is a false positive
import { expect, test } from '@playwright/test';
import {
ACCOUNT_ID,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// eslint-disable-next-line import/named -- this is a false positive
import { expect, test } from '@playwright/test';
import {
ACCOUNT_ID,
Expand Down
2 changes: 2 additions & 0 deletions libs/@guardian/libs/playwright/e2e/sourcepoint-tcfv2.spec.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// eslint-disable-next-line import/named -- this is a false positive
import { expect, test } from '@playwright/test';
import { ACCOUNT_ID, ENDPOINT } from '../fixtures/sourcepointConfig';

Expand All @@ -17,6 +18,7 @@ async function getIframeBody(page, selector) {

return frame;
}

test.describe('Window', () => {
test('has the guCmpHotFix object', async ({ page }) => {
await page.goto(url);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ const config: StorybookConfig = {
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
};

/* eslint-disable-next-line import/no-default-export -- it's the storybook way */
export default config;
1 change: 0 additions & 1 deletion libs/@guardian/source/.storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ const config: StorybookConfig = {
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
};

/* eslint-disable-next-line import/no-default-export -- it's the storybook way */
export default config;

0 comments on commit 01deb5b

Please sign in to comment.