From 4874959204419c38f8cce2a4977dd9d4f3b8d9d3 Mon Sep 17 00:00:00 2001 From: Tine Kondo Date: Sat, 22 Jun 2024 10:37:51 +0000 Subject: [PATCH] chore: fix `lint` target in e2e projets --- e2e/nx-flutter-e2e/project.json | 7 ------- e2e/nx-ktor-e2e/project.json | 7 ------- e2e/nx-melos-e2e/project.json | 7 ------- e2e/nx-micronaut-e2e/project.json | 7 ------- e2e/nx-quarkus-e2e/project.json | 7 ------- e2e/nx-spring-boot-e2e/project.json | 7 ------- e2e/smoke/project.json | 7 ------- 7 files changed, 49 deletions(-) diff --git a/e2e/nx-flutter-e2e/project.json b/e2e/nx-flutter-e2e/project.json index c670431f..ad42bbbd 100644 --- a/e2e/nx-flutter-e2e/project.json +++ b/e2e/nx-flutter-e2e/project.json @@ -14,13 +14,6 @@ "runInBand": true }, "dependsOn": ["^build"] - }, - "lint": { - "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["e2e/nx-flutter-e2e/**/*.ts"] - } } } } diff --git a/e2e/nx-ktor-e2e/project.json b/e2e/nx-ktor-e2e/project.json index e8a6f979..17a4811b 100644 --- a/e2e/nx-ktor-e2e/project.json +++ b/e2e/nx-ktor-e2e/project.json @@ -14,13 +14,6 @@ "runInBand": true }, "dependsOn": ["^build"] - }, - "lint": { - "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["e2e/nx-ktor-e2e/**/*.ts"] - } } } } diff --git a/e2e/nx-melos-e2e/project.json b/e2e/nx-melos-e2e/project.json index eebc613b..d1905abb 100644 --- a/e2e/nx-melos-e2e/project.json +++ b/e2e/nx-melos-e2e/project.json @@ -14,13 +14,6 @@ "runInBand": true }, "dependsOn": ["^build"] - }, - "lint": { - "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["e2e/nx-melos-e2e/**/*.ts"] - } } } } diff --git a/e2e/nx-micronaut-e2e/project.json b/e2e/nx-micronaut-e2e/project.json index dd0aa41a..7dde94f7 100644 --- a/e2e/nx-micronaut-e2e/project.json +++ b/e2e/nx-micronaut-e2e/project.json @@ -14,13 +14,6 @@ "runInBand": true }, "dependsOn": ["^build"] - }, - "lint": { - "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["e2e/nx-micronaut-e2e/**/*.ts"] - } } } } diff --git a/e2e/nx-quarkus-e2e/project.json b/e2e/nx-quarkus-e2e/project.json index a194641d..2d1d8b72 100644 --- a/e2e/nx-quarkus-e2e/project.json +++ b/e2e/nx-quarkus-e2e/project.json @@ -14,13 +14,6 @@ "runInBand": true }, "dependsOn": ["^build"] - }, - "lint": { - "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["e2e/nx-quarkus-e2e/**/*.ts"] - } } } } diff --git a/e2e/nx-spring-boot-e2e/project.json b/e2e/nx-spring-boot-e2e/project.json index c7004e53..2935a70b 100644 --- a/e2e/nx-spring-boot-e2e/project.json +++ b/e2e/nx-spring-boot-e2e/project.json @@ -14,13 +14,6 @@ "runInBand": true }, "dependsOn": ["^build"] - }, - "lint": { - "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["e2e/nx-spring-boot-e2e/**/*.ts"] - } } } } diff --git a/e2e/smoke/project.json b/e2e/smoke/project.json index a688b868..b5e1a18f 100644 --- a/e2e/smoke/project.json +++ b/e2e/smoke/project.json @@ -13,13 +13,6 @@ "nx-melos" ], "targets": { - "lint": { - "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["e2e/smoke/**/*.ts"] - } - }, "test": { "executor": "@nx/jest:jest", "outputs": ["{workspaceRoot}/coverage/e2e/smoke"],