diff options
author | eschcam <cameron.scholes@est.tech> | 2023-02-09 12:23:23 +0000 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2023-02-14 16:28:32 +0000 |
commit | d383c7e9b693c4e001e9f5af9ca86d0df92a8412 (patch) | |
tree | 6c98d2782ad98c552ab42599a41668b71d54765d | |
parent | a82e610071a2814e34846da0c4548fb43a7e8a4f (diff) |
Fix missing configuration for `ng lint` command
Issue-ID: SDC-4380
Signed-off-by: eschcam <cameron.scholes@est.tech>
Change-Id: Iebf457fae583141dbbe9d23ac38d092f3a5dfd54
-rw-r--r-- | catalog-ui/angular-cli.json | 12 |
1 files changed, 11 insertions, 1 deletions
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" + } + ] } |