|
350 | 350 | "items": {
|
351 | 351 | "type": "string"
|
352 | 352 | },
|
353 |
| - "description": "Specifies the arguments to be passed to the language server (i.e.: [\"--log\", \"--log-file=~/robotcode.log\"]). Requires a VSCode restart to take effect.", |
| 353 | + "markdownDescription": "Specifies the arguments to be passed to the language server (i.e.: [`--log`, `--log-file=~/robotcode.log`]). Requires a VSCode restart to take effect.", |
354 | 354 | "scope": "resource"
|
355 | 355 | },
|
356 | 356 | "robotcode.debugAdapter.mode": {
|
|
381 | 381 | "items": {
|
382 | 382 | "type": "string"
|
383 | 383 | },
|
384 |
| - "description": "Specifies the arguments to be passed to the debug adapter (i.e.: [\"--log\", \"--log-file=~/debug-adapter.log\"]). Requires a VSCode restart to take effect.", |
| 384 | + "markdownDescription": "Specifies the arguments to be passed to the debug adapter (i.e.: [`--log`, `--log-file=~/debug-adapter.log`]). Requires a VSCode restart to take effect.", |
385 | 385 | "scope": "resource"
|
386 | 386 | },
|
387 | 387 | "robotcode.robot.args": {
|
|
399 | 399 | "items": {
|
400 | 400 | "type": "string"
|
401 | 401 | },
|
402 |
| - "description": "Specifies the paths where robot/robotcode should discover tests. Corresponds to the 'paths' option of robot.", |
| 402 | + "markdownDescription": "Specifies the paths where robot/robotcode should discover tests. Corresponds to the `paths` option of __robot__.", |
403 | 403 | "scope": "resource"
|
404 | 404 | },
|
405 | 405 | "robotcode.robot.pythonPath": {
|
|
411 | 411 | "items": {
|
412 | 412 | "type": "string"
|
413 | 413 | },
|
414 |
| - "description": "Specifies additional python paths for robotframework. Corresponds to the '--pythonpath' option of robot.", |
| 414 | + "markdownDescription": "Specifies additional python paths for robotframework. Corresponds to the `--pythonpath` option of __robot__.", |
415 | 415 | "scope": "resource"
|
416 | 416 | },
|
417 | 417 | "robotcode.robot.env": {
|
|
429 | 429 | "items": {
|
430 | 430 | "type": "string"
|
431 | 431 | },
|
432 |
| - "markdownDescription": "Specifies the supported language(s) that can be used to write _robot_ files. Corresponds to the '`--language lang *`' option of __robot__.", |
| 432 | + "markdownDescription": "Specifies the supported language(s) that can be used to write _robot_ files. Corresponds to the `--language lang *` option of __robot__.", |
433 | 433 | "scope": "resource"
|
434 | 434 | },
|
435 | 435 | "robotcode.robot.variables": {
|
|
438 | 438 | "additionalProperties": {
|
439 | 439 | "type": "string"
|
440 | 440 | },
|
441 |
| - "description": "Specifies the variables for robotframework. Corresponds to the '--variable name:value' option of robot.", |
| 441 | + "markdownDescription": "Specifies the variables for robotframework. Corresponds to the `--variable name:value` option of __robot__.", |
442 | 442 | "scope": "resource"
|
443 | 443 | },
|
444 | 444 | "robotcode.robot.variableFiles": {
|
|
447 | 447 | "items": {
|
448 | 448 | "type": "string"
|
449 | 449 | },
|
450 |
| - "description": "Specifies the variable files for robotframework. Corresponds to the '--variablefile' option of robot.", |
| 450 | + "markdownDescription": "Specifies the variable files for robotframework. Corresponds to the `--variablefile` option of __robot__.", |
451 | 451 | "scope": "resource"
|
452 | 452 | },
|
453 | 453 | "robotcode.robot.outputDir": {
|
454 | 454 | "type": "string",
|
455 | 455 | "default": "results",
|
456 |
| - "description": "Specifies the output directory where robotframework saves output files.", |
| 456 | + "markdownDescription": "Specifies the output directory where robotframework saves output files. Corresponds to the `--outputdir` option of __robot__.", |
457 | 457 | "scope": "resource"
|
458 | 458 | },
|
459 | 459 | "robotcode.robot.mode": {
|
|
463 | 463 | "rpa",
|
464 | 464 | "norpa"
|
465 | 465 | ],
|
466 |
| - "enumDescriptions": [ |
| 466 | + "markdownEnumDescriptions": [ |
467 | 467 | "Mode is got from test/task header in data files.",
|
468 |
| - "Turn on the generic automation mode. Corresponds to the '--rpa' option of robot.", |
469 |
| - "Force test automation mode. Corresponds to the '--norpa' option of robot." |
| 468 | + "Turn on the generic automation mode. Corresponds to the `--rpa` option of __robot__.", |
| 469 | + "Force test automation mode. Corresponds to the `--norpa` option of __robot__." |
470 | 470 | ],
|
471 |
| - "description": "Specifies robot execution mode.", |
| 471 | + "markdownDescription": "Specifies robot execution mode. Corresponds to the `--rpa` or `--norpa` option of __robot__.", |
472 | 472 | "default": "default",
|
473 | 473 | "scope": "resource"
|
474 | 474 | },
|
|
492 | 492 | "items": {
|
493 | 493 | "type": "string"
|
494 | 494 | },
|
495 |
| - "markdownDescription": [ |
496 |
| - "Specifies the library names that should not be cached. This is useful if you have a dynamic or hybrid library that has different keywords depending on the arguments. You can specify a glob pattern that matches the library name or the source file. \n\nExamples:\n- `**/mylibfolder/mylib.py`\n- `MyLib`\n- `mylib.subpackage.subpackage` \n\nFor robot framework internal libraries, you have to specify the full module name like `robot.libraries.Remote`.\n\nIf you change this setting, you may need to run the command `Robot Code: Clear Cache and Restart Language Servers`." |
497 |
| - ], |
| 495 | + "markdownDescription": "Specifies the library names that should not be cached. This is useful if you have a dynamic or hybrid library that has different keywords depending on the arguments. You can specify a glob pattern that matches the library name or the source file. \n\nExamples:\n- `**/mylibfolder/mylib.py`\n- `MyLib`\n- `mylib.subpackage.subpackage` \n\nFor robot framework internal libraries, you have to specify the full module name like `robot.libraries.Remote`.\n\nIf you change this setting, you may need to run the command `Robot Code: Clear Cache and Restart Language Servers`.", |
498 | 496 | "scope": "resource"
|
499 | 497 | },
|
500 | 498 | "robotcode.analysis.cache.ignoredVariables": {
|
|
503 | 501 | "items": {
|
504 | 502 | "type": "string"
|
505 | 503 | },
|
506 |
| - "markdownDescription": [ |
507 |
| - "Specifies the variable files that should not be cached. This is useful if you have a dynamic or hybrid variable files that has different variables depending on the arguments. You can specify a glob pattern that matches the variable module name or the source file. \n\nExamples:\n- `**/variables/myvars.py`\n- `MyVariables`\n- `myvars.subpackage.subpackage` \n\nIf you change this setting, you may need to run the command `Robot Code: Clear Cache and Restart Language Servers`." |
508 |
| - ], |
| 504 | + "markdownDescription": "Specifies the variable files that should not be cached. This is useful if you have a dynamic or hybrid variable files that has different variables depending on the arguments. You can specify a glob pattern that matches the variable module name or the source file. \n\nExamples:\n- `**/variables/myvars.py`\n- `MyVariables`\n- `myvars.subpackage.subpackage` \n\nIf you change this setting, you may need to run the command `Robot Code: Clear Cache and Restart Language Servers`.", |
509 | 505 | "scope": "resource"
|
510 | 506 | },
|
511 | 507 | "robotcode.run.openOutputAfterRun": {
|
|
855 | 851 | "string",
|
856 | 852 | "null"
|
857 | 853 | ],
|
858 |
| - "description": "The .robot file or a folder containing .robot files to be launched.", |
| 854 | + "markdownDescription": "The `.robot` file or a folder containing `.robot` files to be launched.", |
859 | 855 | "default": "${file}"
|
860 | 856 | },
|
861 | 857 | "paths": {
|
|
864 | 860 | "items": {
|
865 | 861 | "type": "string"
|
866 | 862 | },
|
867 |
| - "description": "Specifies the paths where robot should discover tests. Corresponds to the 'paths' option of robot." |
| 863 | + "markdownDescription": "Specifies the paths where robot should discover tests. Corresponds to the 'paths' option of __robot__." |
868 | 864 | },
|
869 | 865 | "args": {
|
870 | 866 | "type": "array",
|
|
901 | 897 | },
|
902 | 898 | "dryRun": {
|
903 | 899 | "type": "boolean",
|
904 |
| - "description": "Verifies test data and runs tests so that library keywords are not executed. Corresponds to the '--dryrun' option of robot.", |
| 900 | + "markdownDescription": "Verifies test data and runs tests so that library keywords are not executed. Corresponds to the `--dryrun` option of __robot__.", |
905 | 901 | "default": false
|
906 | 902 | },
|
907 | 903 | "python": {
|
|
914 | 910 | "items": {
|
915 | 911 | "type": "string"
|
916 | 912 | },
|
917 |
| - "description": "Specifies additional python paths for robotframework. Corresponds to the '--pythonpath' option of robot.", |
| 913 | + "markdownDescription": "Specifies additional python paths for robotframework. Corresponds to the `--pythonpath` option of __robot__.", |
918 | 914 | "default": []
|
919 | 915 | },
|
920 | 916 | "attachPython": {
|
|
936 | 932 | "items": {
|
937 | 933 | "type": "string"
|
938 | 934 | },
|
939 |
| - "markdownDescription": "Specifies the supported language(s) that can be used to write _robot_ files. Corresponds to the '`--language lang *`' option of __robot__." |
| 935 | + "markdownDescription": "Specifies the supported language(s) that can be used to write _robot_ files. Corresponds to the `--language lang *` option of __robot__." |
940 | 936 | },
|
941 | 937 | "variables": {
|
942 | 938 | "type": "object",
|
943 | 939 | "additionalProperties": {
|
944 | 940 | "type": "string"
|
945 | 941 | },
|
946 | 942 | "default": {},
|
947 |
| - "description": "Specifies the variables for robotframework. Corresponds to the '--variable name:value' option of robot." |
| 943 | + "markdownDescription": "Specifies the variables for robotframework. Corresponds to the `--variable name:value` option of __robot__." |
948 | 944 | },
|
949 | 945 | "variableFiles": {
|
950 | 946 | "type": "array",
|
951 | 947 | "default": [],
|
952 | 948 | "items": {
|
953 | 949 | "type": "string"
|
954 | 950 | },
|
955 |
| - "description": "Specifies the variable files for robotframework. Corresponds to the '--variablefile' option of robot." |
| 951 | + "markdownDescription": "Specifies the variable files for robotframework. Corresponds to the `--variablefile path *` option of __robot__." |
956 | 952 | },
|
957 | 953 | "include": {
|
958 | 954 | "type": "array",
|
959 | 955 | "default": [],
|
960 | 956 | "items": {
|
961 | 957 | "type": "string"
|
962 | 958 | },
|
963 |
| - "description": "Specifies the tags that should be included in test run. Corresponds to the '--include' option of robot." |
| 959 | + "markdownDescription": "Specifies the tags that should be included in test run. Corresponds to the `--include tag * ` option of __robot__." |
964 | 960 | },
|
965 | 961 | "exclude": {
|
966 | 962 | "type": "array",
|
967 | 963 | "default": [],
|
968 | 964 | "items": {
|
969 | 965 | "type": "string"
|
970 | 966 | },
|
971 |
| - "description": "Specifies the tags that should be excluded in test run. Corresponds to the '--excluded' option of robot." |
| 967 | + "markdownDescription": "Specifies the tags that should be excluded in test run. Corresponds to the `--excluded tag *` option of __robot__." |
972 | 968 | },
|
973 | 969 | "launcherArgs": {
|
974 | 970 | "type": "array",
|
|
993 | 989 | "outputDir": {
|
994 | 990 | "type": "string",
|
995 | 991 | "default": null,
|
996 |
| - "description": "Specifies the output directory where robotframework saves output files." |
| 992 | + "markdownDescription": "Specifies the output directory where robotframework saves output files. Corresponds to the `--outputdir` option of __robot__." |
997 | 993 | },
|
998 | 994 | "outputMessages": {
|
999 | 995 | "type": "boolean",
|
|
1017 | 1013 | "rpa",
|
1018 | 1014 | "norpa"
|
1019 | 1015 | ],
|
1020 |
| - "enumDescriptions": [ |
| 1016 | + "markdownEnumDescriptions": [ |
1021 | 1017 | "Mode is got from test/task header in data files.",
|
1022 |
| - "Turn on the generic automation mode. Corresponds to the '--rpa' option of robot.", |
1023 |
| - "Force test automation mode. Corresponds to the '--norpa' option of robot." |
| 1018 | + "Turn on the generic automation mode. Corresponds to the `--rpa` option of __robot__.", |
| 1019 | + "Force test automation mode. Corresponds to the `--norpa` option of __robot__." |
1024 | 1020 | ],
|
1025 | 1021 | "description": "Specifies robot execution mode.",
|
1026 | 1022 | "default": "default"
|
|
1058 | 1054 | "report",
|
1059 | 1055 | "log"
|
1060 | 1056 | ],
|
1061 |
| - "enumDescriptions": [ |
| 1057 | + "markdownEnumDescriptions": [ |
1062 | 1058 | "Do not open anyting",
|
1063 |
| - "Open the report html file.", |
1064 |
| - "Open the log.html file." |
| 1059 | + "Open the `report.html` file.", |
| 1060 | + "Open the `log.html` file." |
1065 | 1061 | ],
|
1066 | 1062 | "default": "none",
|
1067 | 1063 | "description": "Defines if the report or log file should be opened after a run."
|
|
0 commit comments