v0.92.0
Features
-
analyze: Allow shortforms of
warning
andinformation
,warn
andinfo
in diagnostic modifiers (f226091) -
config: Added posibility to allow different tool configs to robot.toml.json schema (ee256ce)
-
robot.toml: Introduce new settings for analysis in robot.toml (fa37dba)
-
vscode: Introduce setting for modifing the diagnostics severity (5cca59f)
With these settings, you can override the default configuration for all diagnostic messages. By combining file, block, and line diagnostic modifiers, you can precisely control how specific errors are displayed.
robotcode.analysis.diagnosticModifiers.ignore
: Suppresses specific diagnostics from being displayed. You can specify one or more error codes, likeMultipleKeywords
or[multiple-keywords, VariableNotFound]
. Use*
to ignore all errors and then maybe add specific error codes to other modifiers, such asinformation
, to selectively show them.robotcode.analysis.diagnosticModifiers.error
: Treats selected diagnostics as errors.robotcode.analysis.diagnosticModifiers.warning
: Displays chosen diagnostics as warnings.robotcode.analysis.diagnosticModifiers.information
: Shows specified diagnostics as informationrobotcode.analysis.diagnosticModifiers.hint
: Marks selected diagnostics as hints
These settings allow you to tailor the diagnostic outputs to meet the specific needs of your project.
-
Introduce
Select Python Environment
command and deprecaterobotcode.python
(be0573d)See here for an explanation.