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 +1 -2
- package/dist/index.js +2 -3
- package/package.json +1 -1
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
|
|
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
|
|
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
|
|
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