flowlint 0.9.1 → 0.9.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/dist/cli.js +3 -3
- package/dist/cli.js.map +1 -1
- package/package.json +6 -6
package/dist/cli.js
CHANGED
|
@@ -23809,8 +23809,8 @@ var rules = [
|
|
|
23809
23809
|
r13WebhookAcknowledgment,
|
|
23810
23810
|
r14RetryAfterCompliance
|
|
23811
23811
|
];
|
|
23812
|
-
function runAllRules(graph, ctx) {
|
|
23813
|
-
return rules.flatMap((rule) => rule(graph, ctx));
|
|
23812
|
+
function runAllRules(graph, ctx, extraRules = []) {
|
|
23813
|
+
return [...rules, ...extraRules].flatMap((rule) => rule(graph, ctx));
|
|
23814
23814
|
}
|
|
23815
23815
|
var defaultConfig = {
|
|
23816
23816
|
files: {
|
|
@@ -24253,7 +24253,7 @@ var initCommand = new Command("init").description("Initialize FlowLint configura
|
|
|
24253
24253
|
// src/cli.ts
|
|
24254
24254
|
var import_meta = {};
|
|
24255
24255
|
var program2 = new Command();
|
|
24256
|
-
program2.name("flowlint").description("Static analysis tool for n8n workflows").version("0.9.
|
|
24256
|
+
program2.name("flowlint").description("Static analysis tool for n8n workflows").version("0.9.3");
|
|
24257
24257
|
program2.addCommand(scanCommand);
|
|
24258
24258
|
program2.addCommand(initCommand);
|
|
24259
24259
|
if (import_meta.url === `file://${process.argv[1]}`) {
|