@checksum-ai/runtime 4.5.0-beta.1 → 4.5.0-beta.3
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/.env +1 -1
- package/checksum-root/.gitignore.example +6 -10
- package/checksum-root/checksum.config.ts +2 -10
- package/checksum-root/eslint.config.js +54 -0
- package/checksum-root/tsconfig.json +1 -1
- package/cli.js +222 -230
- package/package.json +1 -1
- package/checksum-root/eslint.config.mjs +0 -31
package/package.json
CHANGED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
// ESLint 9+ flat config for Checksum Playwright tests.
|
|
2
|
-
//
|
|
3
|
-
// Rules come from the shared, published checksumai-eslint-config package — the
|
|
4
|
-
// same config existing customers are auto-upgraded to via the platform's
|
|
5
|
-
// dependency-upgrade flow. Keeping fresh installs on the shared package means a
|
|
6
|
-
// brand-new project lints identically to an upgraded one (single source of
|
|
7
|
-
// truth), instead of drifting on a hand-rolled copy.
|
|
8
|
-
//
|
|
9
|
-
// Install the peer toolchain with:
|
|
10
|
-
// npm i -D checksumai-eslint-config eslint typescript-eslint @eslint/js typescript
|
|
11
|
-
import { tests } from "checksumai-eslint-config";
|
|
12
|
-
|
|
13
|
-
export default [
|
|
14
|
-
...tests,
|
|
15
|
-
{
|
|
16
|
-
// Project-layout ignores live here (not in the shared package) because the
|
|
17
|
-
// report directories and scratch REPL spec name are conventions of a
|
|
18
|
-
// Checksum test repo's layout, not of the lint ruleset.
|
|
19
|
-
ignores: [
|
|
20
|
-
"test-results/",
|
|
21
|
-
"playwright-report/",
|
|
22
|
-
"blob-report/",
|
|
23
|
-
"playwright/.cache/",
|
|
24
|
-
// scratch REPL specs — both the dot-prefixed (.eval.checksum.spec.ts) and
|
|
25
|
-
// any <name>.eval.checksum.spec.ts form (ESLint's `*` doesn't match a
|
|
26
|
-
// leading dot, so both globs are needed).
|
|
27
|
-
"**/.eval.checksum.spec.ts",
|
|
28
|
-
"**/*.eval.checksum.spec.ts",
|
|
29
|
-
],
|
|
30
|
-
},
|
|
31
|
-
];
|