@checksum-ai/runtime 4.4.1 → 4.5.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.
- package/.env +1 -1
- package/checksum-root/eslint.config.js +10 -1
- package/checksumlib.js +1 -1
- package/cli.js +197 -197
- package/index.js +175 -175
- package/package.json +1 -2
- package/postinstall.js +1 -1
package/.env
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
CHECKSUM_RUNTIME_BUILD_TIME=2026-06-
|
|
1
|
+
CHECKSUM_RUNTIME_BUILD_TIME=2026-06-18T11:56:27.052Z
|
|
@@ -2,9 +2,10 @@
|
|
|
2
2
|
// ESLint 9+ flat config for Checksum Playwright tests
|
|
3
3
|
// Minimal and modern per typescript-eslint Quickstart + Playwright recommended
|
|
4
4
|
// Dev dependencies to add:
|
|
5
|
-
// npm i -D eslint @eslint/js typescript typescript-eslint @typescript-eslint/eslint-plugin eslint-plugin-playwright
|
|
5
|
+
// npm i -D eslint @eslint/js typescript typescript-eslint @typescript-eslint/eslint-plugin eslint-plugin-playwright @stylistic/eslint-plugin
|
|
6
6
|
|
|
7
7
|
import tseslint from "typescript-eslint";
|
|
8
|
+
import stylistic from "@stylistic/eslint-plugin";
|
|
8
9
|
|
|
9
10
|
export default tseslint.config(
|
|
10
11
|
// Project-specific options for typed linting
|
|
@@ -19,6 +20,7 @@ export default tseslint.config(
|
|
|
19
20
|
},
|
|
20
21
|
plugins: {
|
|
21
22
|
"@typescript-eslint": tseslint.plugin,
|
|
23
|
+
"@stylistic": stylistic,
|
|
22
24
|
},
|
|
23
25
|
rules: {
|
|
24
26
|
"@typescript-eslint/no-floating-promises": "error",
|
|
@@ -28,6 +30,13 @@ export default tseslint.config(
|
|
|
28
30
|
// lint if it (or any `eval` / `require`) is left in a committed test.
|
|
29
31
|
"no-eval": "error",
|
|
30
32
|
"@typescript-eslint/no-require-imports": "error",
|
|
33
|
+
// Formatting — kept intentionally minimal: only the two rules that caused
|
|
34
|
+
// real heal churn (single↔double quote flips, missing/extra semicolons).
|
|
35
|
+
// Auto-fixed by `eslint --fix`, so an agent's edit is normalized to this
|
|
36
|
+
// style instead of reflowing the file. `avoidEscape` keeps single quotes
|
|
37
|
+
// when the string contains a double quote (no ugly escaping).
|
|
38
|
+
"@stylistic/quotes": ["error", "double", { avoidEscape: true }],
|
|
39
|
+
"@stylistic/semi": ["error", "always"],
|
|
31
40
|
},
|
|
32
41
|
},
|
|
33
42
|
// Ignores
|