@tea-agent/loop-agent 0.27.1-beta.1 → 0.27.1-beta.2
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.
|
@@ -1080,11 +1080,12 @@ function isFrontendLintVerifyCommand(command) {
|
|
|
1080
1080
|
}
|
|
1081
1081
|
function partitionFrontendStaticVerifyCommands(input) {
|
|
1082
1082
|
const commands = input.commands ?? [];
|
|
1083
|
-
|
|
1083
|
+
// Frontend DAGs deliberately never generate lint verification. Existing
|
|
1084
|
+
// project lint debt is allowed to remain outside this workflow, and an
|
|
1085
|
+
// explicitly mentioned lint command must not reintroduce the lint gate.
|
|
1084
1086
|
const staticCommands = commands.filter((command) => !isFrontendLintVerifyCommand(command));
|
|
1085
1087
|
return {
|
|
1086
1088
|
lint: {
|
|
1087
|
-
...(lintCommands.length > 0 ? { commands: lintCommands } : {}),
|
|
1088
1089
|
commandSource: input.commandSource,
|
|
1089
1090
|
},
|
|
1090
1091
|
static: {
|