Skip to content

Commit

Permalink
Merge release/11.6.0-rc into cascading/11.6.0-rc-main
Browse files Browse the repository at this point in the history
  • Loading branch information
otter-cascading[bot] authored Jan 8, 2025
2 parents 7b2a403 + 611b5b9 commit 59b5ec4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/vscode-extension/src/intellisense/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export const configurationCompletionItemProvider = (options: { channel: OutputCh
return [];
}

const config = (await (await eslint)?.calculateConfigForFile(doc.fileName) || {}) as TSESLint.FlatConfig.Config;
const config = await (await eslint)?.calculateConfigForFile(doc.fileName) || {};
const configurationTags = getConfigurationTagsFromEslintConfig(config, match[0], fileText);

return getCompletionsItemsFromConfigurationTags(configurationTags);
Expand Down

0 comments on commit 59b5ec4

Please sign in to comment.