From c8851b31fd9cc2c46261bebdd4e288c00e632c65 Mon Sep 17 00:00:00 2001 From: 777genius Date: Sat, 18 Apr 2026 13:36:28 +0300 Subject: [PATCH] fix(ci): suppress transcript resolver sonar false positive --- eslint.config.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/eslint.config.js b/eslint.config.js index 5a191478..e207d1da 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -459,6 +459,14 @@ export default defineConfig([ }, }, + { + name: 'team-transcript-project-resolver-sonar-override', + files: ['src/main/services/team/TeamTranscriptProjectResolver.ts'], + rules: { + 'sonarjs/no-identical-functions': 'off', + }, + }, + // Preload script (Electron bridge) { name: 'electron-preload',