From a1eac6a0ef7d139aa2c19bf5555d5b29a79f4c9a Mon Sep 17 00:00:00 2001 From: Jordan Reimer Date: Thu, 20 Mar 2025 17:18:36 -0600 Subject: [PATCH] ignore api-client directory from linting (#29984) --- ui/.eslintignore | 2 +- ui/.prettierignore | 2 +- ui/tsconfig.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/.eslintignore b/ui/.eslintignore index a92ceead0a..d98c87c8b0 100644 --- a/ui/.eslintignore +++ b/ui/.eslintignore @@ -4,12 +4,12 @@ # compiled output /dist/ /tmp/ -/api-client/dist # dependencies /bower_components/ /node_modules/ /.yarn/ +/api-client/ # misc /coverage/ diff --git a/ui/.prettierignore b/ui/.prettierignore index 86517a6ba1..8b7405fe5f 100644 --- a/ui/.prettierignore +++ b/ui/.prettierignore @@ -3,7 +3,7 @@ # compiled output /dist/ -/api-client/dist +/api-client/ # misc /coverage/ diff --git a/ui/tsconfig.json b/ui/tsconfig.json index 1f163fc908..e6f100861b 100644 --- a/ui/tsconfig.json +++ b/ui/tsconfig.json @@ -90,5 +90,5 @@ "lib/sync/**/*", "mirage/**/*" ], - "exclude": ["node_modules"] + "exclude": ["node_modules", "api-client"] }