From b8444d9bb7885d75112a3cae74b6a5c711c7d547 Mon Sep 17 00:00:00 2001 From: Renaud Chaput Date: Wed, 8 Oct 2025 17:51:53 +0200 Subject: [PATCH] Do not automatically run Prettier on the streaming server code. (#36400) --- streaming/lint-staged.config.mjs | 1 - 1 file changed, 1 deletion(-) diff --git a/streaming/lint-staged.config.mjs b/streaming/lint-staged.config.mjs index 430a999b9ab..5f9230acbd5 100644 --- a/streaming/lint-staged.config.mjs +++ b/streaming/lint-staged.config.mjs @@ -1,5 +1,4 @@ const config = { - '*': 'prettier --ignore-unknown --write', '*.{js,ts}': 'eslint --fix', '**/*.ts': () => 'tsc -p tsconfig.json --noEmit', };