eslint-plugin-rulvar 1.1.0 → 1.3.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/dist/index.d.ts CHANGED
@@ -17,8 +17,7 @@ declare const rules: Record<string, Rule.RuleModule>;
17
17
  declare const plugin: ESLint.Plugin;
18
18
  /**
19
19
  * The flat-config preset for workflow modules: the determinism bans as
20
- * errors, the duplicate-identical-call advisory as a warning (docs/06,
21
- * 8.4).
20
+ * errors, the duplicate-identical-call advisory as a warning.
22
21
  */
23
22
  declare const workflowsConfig: Linter.Config;
24
23
  //#endregion
package/dist/index.js CHANGED
@@ -30,7 +30,7 @@ const CTX_CALL_METHODS = /* @__PURE__ */ new Set([
30
30
  "parallel",
31
31
  "pipeline"
32
32
  ]);
33
- /** Bare sandbox globals that are ctx calls in compiled scripts (docs/06, 8.2). */
33
+ /** Bare sandbox globals that are ctx calls in compiled scripts. */
34
34
  const SANDBOX_CALL_GLOBALS = /* @__PURE__ */ new Set([
35
35
  "agent",
36
36
  "workflow",
@@ -254,8 +254,7 @@ const plugin = {
254
254
  };
255
255
  /**
256
256
  * The flat-config preset for workflow modules: the determinism bans as
257
- * errors, the duplicate-identical-call advisory as a warning (docs/06,
258
- * 8.4).
257
+ * errors, the duplicate-identical-call advisory as a warning.
259
258
  */
260
259
  const workflowsConfig = {
261
260
  name: "rulvar/workflows",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-rulvar",
3
- "version": "1.1.0",
3
+ "version": "1.3.0",
4
4
  "description": "rulvar determinism lint rules with structural JSON diagnostics for the planner self-repair loop.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",