Skip to content

Commit bf5869e

Browse files
committed
Enforce kebab case for folders
1 parent eb5848d commit bf5869e

40 files changed

+37
-36
lines changed

e2e-tests/eslint.config.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ export default [
7676
ignoreMiddleExtensions: true,
7777
},
7878
],
79-
// "check-file/folder-naming-convention": [
80-
// "error",
81-
// {
82-
// "**/*": "KEBAB_CASE"
83-
// }
84-
// ]
79+
"check-file/folder-naming-convention": [
80+
"error",
81+
{
82+
"**": "KEBAB_CASE",
83+
},
84+
],
8585
},
8686
},
8787
{
File renamed without changes.

e2e-tests/playwright/e2e/catalog-timestamp.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Page, expect, test } from "@playwright/test";
22
import { UIhelper } from "../utils/ui-helper";
33
import { Common, setupBrowser } from "../utils/common";
44
import { CatalogImport } from "../support/pages/catalog-import";
5-
import { UI_HELPER_ELEMENTS } from "../support/pageObjects/global-obj";
5+
import { UI_HELPER_ELEMENTS } from "../support/page-objects/global-obj";
66

77
let page: Page;
88
test.describe("Test timestamp column on Catalog", () => {

e2e-tests/playwright/e2e/custom-theme.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ThemeVerifier } from "../utils/custom-theme/theme-verifier";
44
import {
55
CUSTOM_FAVICON,
66
CUSTOM_SIDEBAR_LOGO,
7-
} from "../support/testData/custom-theme";
7+
} from "../support/test-data/custom-theme";
88
import { ThemeConstants } from "../data/theme-constants";
99
let page: Page;
1010

e2e-tests/playwright/e2e/github-happy-path.spec.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
import { test, expect, Page, BrowserContext } from "@playwright/test";
22
import { UIhelper } from "../utils/ui-helper";
33
import { Common, setupBrowser } from "../utils/common";
4-
import { RESOURCES } from "../support/testData/resources";
4+
import { RESOURCES } from "../support/test-data/resources";
55
import {
66
BackstageShowcase,
77
CatalogImport,
88
} from "../support/pages/catalog-import";
9-
import { TEMPLATES } from "../support/testData/templates";
9+
import { TEMPLATES } from "../support/test-data/templates";
10+
1011
let page: Page;
1112
let context: BrowserContext;
1213

e2e-tests/playwright/e2e/plugins/application-provider.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { expect, test } from "@playwright/test";
22
import { UIhelper } from "../../utils/ui-helper";
33
import { Common } from "../../utils/common";
4-
import { UI_HELPER_ELEMENTS } from "../../support/pageObjects/global-obj";
4+
import { UI_HELPER_ELEMENTS } from "../../support/page-objects/global-obj";
55

66
test.describe("Test ApplicationProvider", () => {
77
test.beforeAll(async () => {

0 commit comments

Comments
 (0)