diff --git a/apps/marcolongo.cloud-api-e2e/project.json b/apps/marcolongo.cloud-api-e2e/project.json index 47592ded..c1864109 100644 --- a/apps/marcolongo.cloud-api-e2e/project.json +++ b/apps/marcolongo.cloud-api-e2e/project.json @@ -4,6 +4,9 @@ "projectType": "application", "implicitDependencies": ["marcolongo.cloud-api"], "targets": { + "lint": { + "executor": "@nx/eslint:lint" + }, "e2e": { "executor": "@nx/jest:jest", "outputs": ["{workspaceRoot}/coverage/{e2eProjectRoot}"], diff --git a/apps/marcolongo.cloud-api/project.json b/apps/marcolongo.cloud-api/project.json index 6c42498c..a4365c60 100644 --- a/apps/marcolongo.cloud-api/project.json +++ b/apps/marcolongo.cloud-api/project.json @@ -79,6 +79,9 @@ } } }, + "lint": { + "executor": "@nx/eslint:lint" + }, "helm": { "executor": "@nx-extensions/helm:package", "outputs": ["{options.outputFolder}"], diff --git a/apps/marcolongo.cloud-e2e/project.json b/apps/marcolongo.cloud-e2e/project.json index 965c7e85..1d27dc44 100644 --- a/apps/marcolongo.cloud-e2e/project.json +++ b/apps/marcolongo.cloud-e2e/project.json @@ -4,5 +4,10 @@ "projectType": "application", "sourceRoot": "apps/marcolongo.cloud-e2e/src", "tags": [], - "implicitDependencies": ["marcolongo.cloud"] + "implicitDependencies": ["marcolongo.cloud"], + "targets": { + "lint": { + "executor": "@nx/eslint:lint" + } + } } diff --git a/nx.json b/nx.json index e65f5a65..eff0d1a8 100644 --- a/nx.json +++ b/nx.json @@ -81,7 +81,7 @@ { "plugin": "@nx/eslint/plugin", "options": { - "targetName": "lint" + "targetName": "eslint:lint" } }, {