fix: Remove check ignoring file on open

This commit is contained in:
Petr Mironychev 2025-04-21 08:08:20 +02:00
parent 3f2c146df1
commit 2b539bbdeb

View File

@ -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,