From b57336f6cff65ba5fa8a52df9b2e573009e11801 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Mon, 17 Oct 2022 13:45:01 -0600 Subject: [PATCH] inlcude marketplace in linter --- frontend/lint-staged.config.js | 1 + frontend/package.json | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/lint-staged.config.js b/frontend/lint-staged.config.js index 0470e009d..793c49eaa 100644 --- a/frontend/lint-staged.config.js +++ b/frontend/lint-staged.config.js @@ -3,6 +3,7 @@ module.exports = { '*.ts': 'tslint --fix', 'projects/ui/**/*.ts': () => 'npm run check:ui', 'projects/shared/**/*.ts': () => 'npm run check:shared', + 'projects/marketplace/**/*.ts': () => 'npm run check:marketplace', 'projects/diagnostic-ui/**/*.ts': () => 'npm run check:dui', 'projects/setup-wizard/**/*.ts': () => 'npm run check:setup', } diff --git a/frontend/package.json b/frontend/package.json index 9fad4c685..8fb5ff610 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -5,8 +5,9 @@ "homepage": "https://start9.com/", "scripts": { "ng": "ng", - "check": "npm run check:shared && npm run check:ui && npm run check:setup && npm run check:dui", + "check": "npm run check:shared && npm run check:marketplace && npm run check:ui && npm run check:setup && npm run check:dui", "check:shared": "tsc --project projects/shared/tsconfig.json --noEmit --skipLibCheck", + "check:marketplace": "tsc --project projects/marketplace/tsconfig.json --noEmit --skipLibCheck", "check:dui": "tsc --project projects/diagnostic-ui/tsconfig.json --noEmit --skipLibCheck", "check:setup": "tsc --project projects/setup-wizard/tsconfig.json --noEmit --skipLibCheck", "check:ui": "tsc --project projects/ui/tsconfig.json --noEmit --skipLibCheck",