Skip to content

Commit 9dc690e

Browse files
committed
fix(langserver): correct handling of robotcode.robocop.configurations setting
1 parent 0b93d0e commit 9dc690e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/language_server/src/robotcode/language_server/robotframework/parts/robocop_diagnostics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ async def collect(
9999
if extension_config.exclude:
100100
config.exclude = set(extension_config.exclude)
101101
if extension_config.configurations:
102-
config.configure = set(extension_config.configurations)
102+
config.configure = extension_config.configurations
103103

104104
class MyRobocop(Robocop):
105105
async def run_check(self, ast_model, filename, source=None): # type: ignore

0 commit comments

Comments
 (0)