From: Jérôme Benoit Date: Sun, 14 Jul 2024 17:04:33 +0000 (+0200) Subject: chore(ci): silence linter X-Git-Tag: v4.1.0~13 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=80ef0ba4c96396085e92afa34d628353e5731dbf;p=poolifier.git chore(ci): silence linter Signed-off-by: Jérôme Benoit --- diff --git a/.lintstagedrc.js b/.lintstagedrc.js index f9e18d53..d68031db 100644 --- a/.lintstagedrc.js +++ b/.lintstagedrc.js @@ -1,7 +1,7 @@ export default { '**/*.{ts,tsx,js,jsx,cjs,mjs}': [ // 'biome format --write', - 'eslint --cache --fix', + // 'eslint --cache --fix', ], '**/*.json': ['biome format --write'], '**/*.{md,yml,yaml}': ['prettier --cache --write'], diff --git a/examples/typescript/http-server-pool/fastify-worker_threads/src/main.ts b/examples/typescript/http-server-pool/fastify-worker_threads/src/main.ts index d30e913c..b9aba792 100644 --- a/examples/typescript/http-server-pool/fastify-worker_threads/src/main.ts +++ b/examples/typescript/http-server-pool/fastify-worker_threads/src/main.ts @@ -17,6 +17,7 @@ const fastify = Fastify({ const workerFile = join( dirname(fileURLToPath(import.meta.url)), + // eslint-disable-next-line @typescript-eslint/restrict-template-expressions `worker${extname(fileURLToPath(import.meta.url))}` )