@dvukovic/style-guide 0.23.0 → 0.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,4 +9,8 @@
|
|
|
9
9
|
export function playwright(config?: import("@eslint/config-helpers").ConfigWithExtends & {
|
|
10
10
|
additionalFiles?: string[];
|
|
11
11
|
}): import("@eslint/config-helpers").ConfigWithExtends;
|
|
12
|
-
export const playwrightConfig: import("@eslint/config-helpers").Config
|
|
12
|
+
export const playwrightConfig: (import("@eslint/config-helpers").Config | {
|
|
13
|
+
rules: {
|
|
14
|
+
"no-await-in-loop": string;
|
|
15
|
+
};
|
|
16
|
+
})[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
import { TEST_FILES } from "../file-patterns.js"
|
|
2
2
|
import { playwright as playwrightPlugin } from "../plugins/playwright.js"
|
|
3
3
|
|
|
4
|
-
export const playwrightConfig = [
|
|
4
|
+
export const playwrightConfig = [
|
|
5
|
+
playwrightPlugin,
|
|
6
|
+
{
|
|
7
|
+
rules: {
|
|
8
|
+
"no-await-in-loop": "off",
|
|
9
|
+
},
|
|
10
|
+
},
|
|
11
|
+
]
|
|
5
12
|
|
|
6
13
|
/**
|
|
7
14
|
* Playwright testing configuration
|