From cfe08dff651c67a0cceeb2ea6ec422d5d4a3109e Mon Sep 17 00:00:00 2001 From: nigiri <168690269+0xnigir1@users.noreply.github.com> Date: Tue, 10 Sep 2024 15:11:21 -0300 Subject: [PATCH] fix: turbo.json lint config --- turbo.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/turbo.json b/turbo.json index efc86fe..e9066f0 100644 --- a/turbo.json +++ b/turbo.json @@ -1,8 +1,12 @@ { "$schema": "https://turbo.build/schema.json", "tasks": { - "lint": {}, - "lint:fix": {}, + "lint": { + "dependsOn": ["build"] + }, + "lint:fix": { + "dependsOn": ["build"] + }, "format": {}, "format:fix": {}, "check-types": {},