From bd2ed53ed9e1075b552ede0df608f185cd6db01e Mon Sep 17 00:00:00 2001 From: Elias Meire Date: Fri, 27 Jun 2025 13:11:52 +0200 Subject: [PATCH] build: Add dependency on @n8n/eslint-config#build to lint scripts (#16768) --- turbo.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/turbo.json b/turbo.json index 11559fd880..f439571867 100644 --- a/turbo.json +++ b/turbo.json @@ -31,6 +31,7 @@ "format:check": {}, "lint:backend": { "dependsOn": [ + "@n8n/eslint-config#build", "^build", "@n8n/api-types#lint", "@n8n/config#lint", @@ -52,6 +53,7 @@ }, "lint:frontend": { "dependsOn": [ + "@n8n/eslint-config#build", "^build", "@n8n/rest-api-client#lint", "@n8n/api-types#lint", @@ -71,6 +73,7 @@ }, "lint:nodes": { "dependsOn": [ + "@n8n/eslint-config#build", "^build", "n8n-nodes-base#lint", "@n8n/n8n-nodes-langchain#lint", @@ -78,7 +81,7 @@ ] }, "lint": { - "dependsOn": ["^build"] + "dependsOn": ["^build", "@n8n/eslint-config#build"] }, "lintfix": {}, "test:backend": {