You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Defines if the test report should be opened a run session automatically.",
414
414
"scope": "resource"
415
415
},
416
-
"robotcode.workspace.excludePatterns": {
417
-
"type": "array",
418
-
"default": [
419
-
"**/.git/**",
420
-
"**/node_modules/**",
421
-
"**/.pytest_cache/**",
422
-
"**/__pycache__/**",
423
-
"**/.mypy_cache/**"
424
-
],
425
-
"items": {
426
-
"type": "string"
427
-
},
428
-
"description": "Specifies glob patterns for excluding files and folders from analysing by the language server.",
429
-
"scope": "resource"
430
-
},
431
416
"robotcode.robocop.enabled": {
432
417
"type": "boolean",
433
418
"default": true,
@@ -466,6 +451,55 @@
466
451
"default": true,
467
452
"markdownDescription": "Enables 'robotidy' code formatting, if installed. See [robotidy](https://github.com/MarketSquare/robotframework-tidy)",
468
453
"scope": "resource"
454
+
},
455
+
"robotcode.analysis.diagnosticMode": {
456
+
"type": "string",
457
+
"enum": [
458
+
"openFilesOnly",
459
+
"workspace"
460
+
],
461
+
"default": "openFilesOnly",
462
+
"enumDescriptions": [
463
+
"Analyzes and reports errors only on open files.",
464
+
"Analyzes and reports errors on all files in the workspace."
465
+
],
466
+
"description": "Analysis mode for diagnostics.",
467
+
"scope": "resource"
468
+
},
469
+
"robotcode.analysis.progressMode": {
470
+
"type": "string",
471
+
"enum": [
472
+
"simple",
473
+
"detailed"
474
+
],
475
+
"default": "simple",
476
+
"enumDescriptions": [
477
+
"Show only simple progress messages.",
478
+
"Show detailed progress messages."
479
+
],
480
+
"description": "Analysis mode for diagnostics.",
481
+
"scope": "resource"
482
+
},
483
+
"robotcode.workspace.excludePatterns": {
484
+
"type": "array",
485
+
"default": [
486
+
"**/.git/**",
487
+
"**/node_modules/**",
488
+
"**/.pytest_cache/**",
489
+
"**/__pycache__/**",
490
+
"**/.mypy_cache/**"
491
+
],
492
+
"items": {
493
+
"type": "string"
494
+
},
495
+
"description": "Specifies glob patterns for excluding files and folders from analysing by the language server.",
496
+
"scope": "resource"
497
+
},
498
+
"robotcode.analysis.maxProjectFileCount": {
499
+
"type": "integer",
500
+
"default": 1000,
501
+
"description": "Specifies the maximum number of files for which diagnostics are reported for the whole project/workspace folder. Specifies 0 or less to disable the limit completely.",
0 commit comments