From d35de888642115a61cabd0d1eee6b060d0236ca9 Mon Sep 17 00:00:00 2001 From: Steve Dodier-Lazaro Date: Mon, 28 Oct 2024 17:05:02 +0100 Subject: [PATCH] chore(ci): Avoid linting temp tsup artifacts --- .gitignore | 3 +++ .prettierignore | 4 +++- packages/config-eslint/shared.js | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 54e85d2..b126e75 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,6 @@ coverage # Debug files for local testing packages/cuttings/src/debug.ts packages/rest/src/debug.ts + +apps/**/tsup.config.bundled*.mjs +packages/**/tsup.config.bundled*.mjs \ No newline at end of file diff --git a/.prettierignore b/.prettierignore index 3b0e473..d3fea21 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,2 +1,4 @@ README.md -package.json \ No newline at end of file +package.json +apps/**/tsup.config.bundled*.mjs +packages/**/tsup.config.bundled*.mjs \ No newline at end of file diff --git a/packages/config-eslint/shared.js b/packages/config-eslint/shared.js index 1630335..7589a1b 100644 --- a/packages/config-eslint/shared.js +++ b/packages/config-eslint/shared.js @@ -30,7 +30,7 @@ export function addTsUnusedRule(conf) { export const configs = [ { - ignores: ['coverage/*', 'dist/*', 'node_modules/*'], + ignores: ['coverage/*', 'dist/*', 'node_modules/*', 'tsup.config.bundled*.mjs'], }, { files: ['**/*.json'],