@trackunit/eslint-plugin-trackunit 0.6.33 → 0.6.35
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.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 0.6.35 (2026-06-18)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated shared-utils to 1.15.35
|
|
6
|
+
|
|
7
|
+
## 0.6.34 (2026-06-18)
|
|
8
|
+
|
|
9
|
+
### 🧱 Updated Dependencies
|
|
10
|
+
|
|
11
|
+
- Updated shared-utils to 1.15.34
|
|
12
|
+
|
|
1
13
|
## 0.6.33 (2026-06-18)
|
|
2
14
|
|
|
3
15
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const e2e: (
|
|
1
|
+
export declare const e2e: ({
|
|
2
2
|
files: string[];
|
|
3
3
|
languageOptions: {
|
|
4
4
|
ecmaVersion: number;
|
|
@@ -7,4 +7,15 @@ export declare const e2e: (import("eslint").Linter.Config<import("eslint").Linte
|
|
|
7
7
|
project: string[];
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
|
+
rules?: undefined;
|
|
11
|
+
} | {
|
|
12
|
+
files: string[];
|
|
13
|
+
rules: {
|
|
14
|
+
"testing-library/prefer-screen-queries": string;
|
|
15
|
+
"testing-library/no-node-access": string;
|
|
16
|
+
"testing-library/no-container": string;
|
|
17
|
+
"testing-library/render-result-naming-convention": string;
|
|
18
|
+
"testing-library/no-render-in-lifecycle": string;
|
|
19
|
+
};
|
|
20
|
+
languageOptions?: undefined;
|
|
10
21
|
})[];
|
|
@@ -1,19 +1,26 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.e2e = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
|
-
const cypress = tslib_1.__importStar(require("eslint-plugin-cypress/flat"));
|
|
6
4
|
exports.e2e = [
|
|
7
|
-
cypress.configs.recommended,
|
|
8
5
|
{
|
|
9
6
|
files: ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"],
|
|
10
7
|
languageOptions: {
|
|
11
8
|
ecmaVersion: 5,
|
|
12
9
|
sourceType: "script",
|
|
13
10
|
parserOptions: {
|
|
14
|
-
project: ["./tsconfig.*?.json", "./tsconfig.json", "./
|
|
11
|
+
project: ["./tsconfig.*?.json", "./tsconfig.json", "./playwright/tsconfig.json"],
|
|
15
12
|
},
|
|
16
13
|
},
|
|
17
14
|
},
|
|
15
|
+
{
|
|
16
|
+
files: ["playwright/**/*.ts", "playwright/**/*.tsx"],
|
|
17
|
+
rules: {
|
|
18
|
+
"testing-library/prefer-screen-queries": "off",
|
|
19
|
+
"testing-library/no-node-access": "off",
|
|
20
|
+
"testing-library/no-container": "off",
|
|
21
|
+
"testing-library/render-result-naming-convention": "off",
|
|
22
|
+
"testing-library/no-render-in-lifecycle": "off",
|
|
23
|
+
},
|
|
24
|
+
},
|
|
18
25
|
];
|
|
19
26
|
//# sourceMappingURL=e2e.js.map
|