From: eschcam Date: Thu, 9 Feb 2023 12:23:23 +0000 (+0000) Subject: Fix missing configuration for `ng lint` command X-Git-Tag: 1.12.2~23 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F15%2F133215%2F2;p=sdc.git Fix missing configuration for `ng lint` command Issue-ID: SDC-4380 Signed-off-by: eschcam Change-Id: Iebf457fae583141dbbe9d23ac38d092f3a5dfd54 --- diff --git a/catalog-ui/angular-cli.json b/catalog-ui/angular-cli.json index a19145fe12..9ec055449f 100644 --- a/catalog-ui/angular-cli.json +++ b/catalog-ui/angular-cli.json @@ -49,5 +49,15 @@ "inlineStyle": false, "inlineTemplate": false } - } + }, + "lint": [ + { + "files": "src/**/*.ts", + "project": "src/tsconfig.json" + }, + { + "files": "e2e/**/*.ts", + "project": "e2e/tsconfig.json" + } + ] }