From 2b539bbdebb0339ab9440379938f71c1063e87ae Mon Sep 17 00:00:00 2001 From: Petr Mironychev <9195189+Palm1r@users.noreply.github.com> Date: Mon, 21 Apr 2025 08:08:20 +0200 Subject: [PATCH] fix: Remove check ignoring file on open --- QodeAssistClient.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/QodeAssistClient.cpp b/QodeAssistClient.cpp index bcb1110..bdbae3d 100644 --- a/QodeAssistClient.cpp +++ b/QodeAssistClient.cpp @@ -74,14 +74,6 @@ void QodeAssistClient::openDocument(TextEditor::TextDocument *document) if (!isEnabled(project)) return; - if (m_llmClient->contextManager() - ->ignoreManager() - ->shouldIgnore(document->filePath().toUrlishString(), project)) { - LOG_MESSAGE(QString("Ignoring file due to .qodeassistignore: %1") - .arg(document->filePath().toUrlishString())); - return; - } - Client::openDocument(document); connect( document,