Skip to content

Commit a496714

Browse files
committed
fix(analyze): allow all also in robot.toml configuration for exit-code-mask
1 parent 98e4d5c commit a496714

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

etc/robot.toml.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,8 @@
243243
"warning",
244244
"info",
245245
"information",
246-
"hint"
246+
"hint",
247+
"all"
247248
],
248249
"type": "string"
249250
},
@@ -263,7 +264,8 @@
263264
"warning",
264265
"info",
265266
"information",
266-
"hint"
267+
"hint",
268+
"all"
267269
],
268270
"type": "string"
269271
},

packages/analyze/src/robotcode/analyze/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def parse(value: Union[Iterable[str], str, None]) -> "ExitCodeMask":
225225
return flags
226226

227227

228-
ExitCodeMaskLiteral = Literal["error", "warn", "warning", "info", "information", "hint"]
228+
ExitCodeMaskLiteral = Literal["error", "warn", "warning", "info", "information", "hint", "all"]
229229
ExitCodeMaskList = List[ExitCodeMaskLiteral]
230230

231231

0 commit comments

Comments
 (0)