coc-pyright 1.1.315 → 1.1.320

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,645 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "description": "Pyright Configuration Schema",
4
- "allowComments": true,
5
- "allowTrailingCommas": true,
6
- "type": "object",
7
- "definitions": {
8
- "diagnostic": {
9
- "anyOf": [
10
- {
11
- "type": "boolean"
12
- },
13
- {
14
- "type": "string",
15
- "enum": [
16
- "none",
17
- "information",
18
- "warning",
19
- "error"
20
- ]
21
- }
22
- ]
23
- }
24
- },
25
- "properties": {
26
- "include": {
27
- "$id": "#/properties/include",
28
- "type": "array",
29
- "title": "Files and directories included in type analysis",
30
- "items": {
31
- "$id": "#/properties/include/items",
32
- "type": "string",
33
- "title": "File or directory to include in type analysis",
34
- "pattern": "^(.*)$"
35
- }
36
- },
37
- "exclude": {
38
- "$id": "#/properties/exclude",
39
- "type": "array",
40
- "title": "Files and directories excluded from type analysis",
41
- "items": {
42
- "$id": "#/properties/exclude/items",
43
- "type": "string",
44
- "title": "File or directory to exclude from type analysis",
45
- "pattern": "^(.*)$"
46
- }
47
- },
48
- "ignore": {
49
- "$id": "#/properties/ignore",
50
- "type": "array",
51
- "title": "Files and directories whose diagnostics are suppressed",
52
- "items": {
53
- "$id": "#/properties/ignore/items",
54
- "type": "string",
55
- "title": "File or directory where diagnostics should be suppressed",
56
- "pattern": "^(.*)$"
57
- }
58
- },
59
- "strict": {
60
- "$id": "#/properties/strict",
61
- "type": "array",
62
- "title": "Files and directories that should use 'strict' type checking rules",
63
- "items": {
64
- "$id": "#/properties/strict/items",
65
- "type": "string",
66
- "title": "File or directory that should use 'strict' type checking rules",
67
- "pattern": "^(.*)$"
68
- }
69
- },
70
- "defineConstant": {
71
- "$id": "#/properties/defineConstant",
72
- "type": "object",
73
- "title": "Identifiers that should be treated as constants",
74
- "properties": {
75
- },
76
- "additionalProperties": {
77
- "type": ["string", "boolean"],
78
- "title": "Value of constant (boolean or string)"
79
- }
80
- },
81
- "typeCheckingMode": {
82
- "$id": "#/properties/typeCheckingMode",
83
- "type": "string",
84
- "enum": [
85
- "off",
86
- "basic",
87
- "strict"
88
- ],
89
- "title": "Specifies the default rule set to use for type checking",
90
- "default": "basic"
91
- },
92
- "useLibraryCodeForTypes": {
93
- "$id": "#/properties/useLibraryCodeForTypes",
94
- "type": "boolean",
95
- "title": "Use library implementations to extract type information when type stub is not present",
96
- "default": true
97
- },
98
- "typeshedPath": {
99
- "$id": "#/properties/typeshedPath",
100
- "type": "string",
101
- "title": "Path to directory containing typeshed type stub files",
102
- "default": "",
103
- "pattern": "^(.*)$"
104
- },
105
- "stubPath": {
106
- "$id": "#/properties/stubPath",
107
- "type": "string",
108
- "title": "Path to directory containing custom type stub files",
109
- "default": "",
110
- "examples": [
111
- "src/typestubs"
112
- ],
113
- "pattern": "^(.*)$"
114
- },
115
- "strictListInference": {
116
- "$id": "#/properties/strictListInference",
117
- "type": "boolean",
118
- "title": "Infer strict types for list expressions",
119
- "default": false
120
- },
121
- "strictSetInference": {
122
- "$id": "#/properties/strictSetInference",
123
- "type": "boolean",
124
- "title": "Infer strict types for set expressions",
125
- "default": false
126
- },
127
- "strictDictionaryInference": {
128
- "$id": "#/properties/strictDictionaryInference",
129
- "type": "boolean",
130
- "title": "Infer strict types for dictionary expressions",
131
- "default": false
132
- },
133
- "analyzeUnannotatedFunctions": {
134
- "$id": "#/properties/analyzeUnannotatedFunctions",
135
- "type": "boolean",
136
- "title": "Analyze and report diagnostics for functions that have no annotations",
137
- "default": true
138
- },
139
- "strictParameterNoneValue": {
140
- "$id": "#/properties/strictParameterNoneValue",
141
- "type": "boolean",
142
- "title": "Allow implicit Optional when default parameter value is None",
143
- "default": true
144
- },
145
- "enableTypeIgnoreComments": {
146
- "$id": "#/properties/enableTypeIgnoreComments",
147
- "type": "boolean",
148
- "title": "Allow \"# type: ignore\" comments",
149
- "default": true
150
- },
151
- "reportGeneralTypeIssues": {
152
- "$id": "#/properties/reportGeneralTypeIssues",
153
- "$ref": "#/definitions/diagnostic",
154
- "title": "Controls reporting of general type issues",
155
- "default": "error"
156
- },
157
- "reportPropertyTypeMismatch": {
158
- "$id": "#/properties/reportPropertyTypeMismatch",
159
- "$ref": "#/definitions/diagnostic",
160
- "title": "Controls reporting of property getter/setter type mismatches",
161
- "default": "none"
162
- },
163
- "reportFunctionMemberAccess": {
164
- "$id": "#/properties/reportFunctionMemberAccess",
165
- "$ref": "#/definitions/diagnostic",
166
- "title": "Controls reporting of member accesses on function objects",
167
- "default": "none"
168
- },
169
- "reportMissingImports": {
170
- "$id": "#/properties/reportMissingImports",
171
- "$ref": "#/definitions/diagnostic",
172
- "title": "Controls reporting of imports that cannot be resolved",
173
- "default": "error"
174
- },
175
- "reportMissingModuleSource": {
176
- "$id": "#/properties/reportMissingModuleSource",
177
- "$ref": "#/definitions/diagnostic",
178
- "title": "Controls reporting of imports that cannot be resolved to source files",
179
- "default": "warning"
180
- },
181
- "reportMissingTypeStubs": {
182
- "$id": "#/properties/reportMissingTypeStubs",
183
- "$ref": "#/definitions/diagnostic",
184
- "title": "Controls reporting of imports that cannot be resolved to type stub files",
185
- "default": "none"
186
- },
187
- "reportImportCycles": {
188
- "$id": "#/properties/reportImportCycles",
189
- "$ref": "#/definitions/diagnostic",
190
- "title": "Controls reporting of module imports that create cycles in import graph",
191
- "default": "none"
192
- },
193
- "reportUnusedImport": {
194
- "$id": "#/properties/reportUnusedImport",
195
- "$ref": "#/definitions/diagnostic",
196
- "title": "Controls reporting of imported symbols that are not referenced within the source file",
197
- "default": "none"
198
- },
199
- "reportUnusedClass": {
200
- "$id": "#/properties/reportUnusedClass",
201
- "$ref": "#/definitions/diagnostic",
202
- "title": "Controls reporting of private classes that are not accessed",
203
- "default": "none"
204
- },
205
- "reportUnusedFunction": {
206
- "$id": "#/properties/reportUnusedFunction",
207
- "$ref": "#/definitions/diagnostic",
208
- "title": "Controls reporting of private functions or methods that are not accessed",
209
- "default": "none"
210
- },
211
- "reportUnusedVariable": {
212
- "$id": "#/properties/reportUnusedVariable",
213
- "$ref": "#/definitions/diagnostic",
214
- "title": "Controls reporting of local variables that are not accessed",
215
- "default": "none"
216
- },
217
- "reportDuplicateImport": {
218
- "$id": "#/properties/reportDuplicateImport",
219
- "$ref": "#/definitions/diagnostic",
220
- "title": "Controls reporting of symbols or modules that are imported more than once",
221
- "default": "none"
222
- },
223
- "reportWildcardImportFromLibrary": {
224
- "$id": "#/properties/reportWildcardImportFromLibrary",
225
- "$ref": "#/definitions/diagnostic",
226
- "title": "Controls reporting of wlidcard import from external library",
227
- "default": "none"
228
- },
229
- "reportOptionalSubscript": {
230
- "$id": "#/properties/reportOptionalSubscript",
231
- "$ref": "#/definitions/diagnostic",
232
- "title": "Controls reporting of attempts to subscript (index) a variable with Optional type",
233
- "default": "error"
234
- },
235
- "reportOptionalMemberAccess": {
236
- "$id": "#/properties/reportOptionalMemberAccess",
237
- "$ref": "#/definitions/diagnostic",
238
- "title": "Controls reporting of attempts to access a member of a variable with Optional type",
239
- "default": "error"
240
- },
241
- "reportOptionalCall": {
242
- "$id": "#/properties/reportOptionalCall",
243
- "$ref": "#/definitions/diagnostic",
244
- "title": "Controls reporting of attempts to call a variable with Optional type",
245
- "default": "error"
246
- },
247
- "reportOptionalIterable": {
248
- "$id": "#/properties/reportOptionalIterable",
249
- "$ref": "#/definitions/diagnostic",
250
- "title": "Controls reporting of attempts to use an Optional type as an iterable value",
251
- "default": "error"
252
- },
253
- "reportOptionalContextManager": {
254
- "$id": "#/properties/reportOptionalContextManager",
255
- "$ref": "#/definitions/diagnostic",
256
- "title": "Controls reporting of attempts to use an Optional type as a parameter to a with statement",
257
- "default": "error"
258
- },
259
- "reportOptionalOperand": {
260
- "$id": "#/properties/reportOptionalOperand",
261
- "$ref": "#/definitions/diagnostic",
262
- "title": "Controls reporting of attempts to use an Optional type as an operand for a binary or unary operator",
263
- "default": "error"
264
- },
265
- "reportTypedDictNotRequiredAccess": {
266
- "$id": "#/properties/reportTypedDictNotRequiredAccess",
267
- "$ref": "#/definitions/diagnostic",
268
- "title": "Controls reporting of attempts to access a non-required key in a TypedDict without a check for its presence",
269
- "default": "error"
270
- },
271
- "reportUntypedFunctionDecorator": {
272
- "$id": "#/properties/reportUntypedFunctionDecorator",
273
- "$ref": "#/definitions/diagnostic",
274
- "title": "Controls reporting of function decorators without type annotations, which obscure function types",
275
- "default": "none"
276
- },
277
- "reportUntypedClassDecorator": {
278
- "$id": "#/properties/reportUntypedClassDecorator",
279
- "$ref": "#/definitions/diagnostic",
280
- "title": "Controls reporting of class decorators without type annotations, which obscure class types",
281
- "default": "none"
282
- },
283
- "reportUntypedBaseClass": {
284
- "$id": "#/properties/reportUntypedBaseClass",
285
- "$ref": "#/definitions/diagnostic",
286
- "title": "Controls reporting of a base class of an unknown type, which obscures most type checking for the class",
287
- "default": "none"
288
- },
289
- "reportUntypedNamedTuple": {
290
- "$id": "#/properties/reportUntypedNamedTuple",
291
- "$ref": "#/definitions/diagnostic",
292
- "title": "Controls reporting of a named tuple definition that does not contain type information",
293
- "default": "none"
294
- },
295
- "reportPrivateUsage": {
296
- "$id": "#/properties/reportPrivateUsage",
297
- "$ref": "#/definitions/diagnostic",
298
- "title": "Controls reporting of private variables and functions used outside of the owning class or module and usage of protected members outside of subclasses",
299
- "default": "none"
300
- },
301
- "reportTypeCommentUsage": {
302
- "$id": "#/properties/reportTypeCommentUsage",
303
- "$ref": "#/definitions/diagnostic",
304
- "title": "Controls reporting of deprecated type comment usage",
305
- "default": "none"
306
- },
307
- "reportPrivateImportUsage": {
308
- "$id": "#/properties/reportPrivateImportUsage",
309
- "$ref": "#/definitions/diagnostic",
310
- "title": "Controls reporting of improper usage of symbol imported from a \"py.typed\" module that is not re-exported from that module",
311
- "default": "error"
312
- },
313
- "reportConstantRedefinition": {
314
- "$id": "#/properties/reportConstantRedefinition",
315
- "$ref": "#/definitions/diagnostic",
316
- "title": "Controls reporting of attempts to redefine variables that are in all-caps",
317
- "default": "none"
318
- },
319
- "reportDeprecated": {
320
- "$id": "#/properties/reportDeprecated",
321
- "$ref": "#/definitions/diagnostic",
322
- "title": "Controls reporting of use of deprecated class or function",
323
- "default": "none"
324
- },
325
- "reportIncompatibleMethodOverride": {
326
- "$id": "#/properties/reportIncompatibleMethodOverride",
327
- "$ref": "#/definitions/diagnostic",
328
- "title": "Controls reporting of method overrides in subclasses that redefine the method in an incompatible way",
329
- "default": "none"
330
- },
331
- "reportIncompatibleVariableOverride": {
332
- "$id": "#/properties/reportIncompatibleVariableOverride",
333
- "$ref": "#/definitions/diagnostic",
334
- "title": "Controls reporting of overrides in subclasses that redefine a variable in an incompatible way",
335
- "default": "none"
336
- },
337
- "reportInconsistentConstructor": {
338
- "$id": "#/properties/reportInconsistentConstructor",
339
- "$ref": "#/definitions/diagnostic",
340
- "title": "Controls reporting of __init__ and __new__ methods whose signatures are inconsistent",
341
- "default": "none"
342
- },
343
- "reportOverlappingOverload": {
344
- "$id": "#/properties/reportOverlappingOverload",
345
- "$ref": "#/definitions/diagnostic",
346
- "title": "Controls reporting of function overloads that overlap in signature and obscure each other or do not agree on return type",
347
- "default": "none"
348
- },
349
- "reportMissingSuperCall": {
350
- "$id": "#/properties/reportMissingSuperCall",
351
- "$ref": "#/definitions/diagnostic",
352
- "title": "Controls reporting of missing call to parent class for inherited `__init__` methods",
353
- "default": "none"
354
- },
355
- "reportUninitializedInstanceVariable": {
356
- "$id": "#/properties/reportUninitializedInstanceVariable",
357
- "$ref": "#/definitions/diagnostic",
358
- "title": "Controls reporting of instance variables that are not initialized in the constructor",
359
- "default": "none"
360
- },
361
- "reportInvalidStringEscapeSequence": {
362
- "$id": "#/properties/reportInvalidStringEscapeSequence",
363
- "$ref": "#/definitions/diagnostic",
364
- "title": "Controls reporting of invalid escape sequences used within string literals",
365
- "default": "warning"
366
- },
367
- "reportUnknownParameterType": {
368
- "$id": "#/properties/reportUnknownParameterType",
369
- "$ref": "#/definitions/diagnostic",
370
- "title": "Controls reporting input and return parameters whose types are unknown",
371
- "default": "none"
372
- },
373
- "reportUnknownArgumentType": {
374
- "$id": "#/properties/reportUnknownArgumentType",
375
- "$ref": "#/definitions/diagnostic",
376
- "title": "Controls reporting argument expressions whose types are unknown",
377
- "default": "none"
378
- },
379
- "reportUnknownLambdaType": {
380
- "$id": "#/properties/reportUnknownLambdaType",
381
- "$ref": "#/definitions/diagnostic",
382
- "title": "Controls reporting input and return parameters for lambdas whose types are unknown",
383
- "default": "none"
384
- },
385
- "reportUnknownVariableType": {
386
- "$id": "#/properties/reportUnknownVariableType",
387
- "$ref": "#/definitions/diagnostic",
388
- "title": "Controls reporting local variables whose types are unknown",
389
- "default": "none"
390
- },
391
- "reportUnknownMemberType": {
392
- "$id": "#/properties/reportUnknownMemberType",
393
- "$ref": "#/definitions/diagnostic",
394
- "title": "Controls reporting class and instance variables whose types are unknown",
395
- "default": "none"
396
- },
397
- "reportMissingParameterType": {
398
- "$id": "#/properties/reportMissingParameterType",
399
- "$ref": "#/definitions/diagnostic",
400
- "title": "Controls reporting input parameters that are missing a type annotation",
401
- "default": "none"
402
- },
403
- "reportMissingTypeArgument": {
404
- "$id": "#/properties/reportMissingTypeArgument",
405
- "$ref": "#/definitions/diagnostic",
406
- "title": "Controls reporting generic class reference with missing type arguments",
407
- "default": "none"
408
- },
409
- "reportInvalidTypeVarUse": {
410
- "$id": "#/properties/reportInvalidTypeVarUse",
411
- "$ref": "#/definitions/diagnostic",
412
- "title": "Controls reporting improper use of type variables within function signatures",
413
- "default": "warning"
414
- },
415
- "reportCallInDefaultInitializer": {
416
- "$id": "#/properties/reportCallInDefaultInitializer",
417
- "$ref": "#/definitions/diagnostic",
418
- "title": "Controls reporting usage of function calls within a default value initializer expression",
419
- "default": "none"
420
- },
421
- "reportUnnecessaryIsInstance": {
422
- "$id": "#/properties/reportUnnecessaryIsInstance",
423
- "$ref": "#/definitions/diagnostic",
424
- "title": "Controls reporting calls to 'isinstance' or 'issubclass' where the result is statically determined to be always true",
425
- "default": "none"
426
- },
427
- "reportUnnecessaryCast": {
428
- "$id": "#/properties/reportUnnecessaryCast",
429
- "$ref": "#/definitions/diagnostic",
430
- "title": "Controls reporting calls to 'cast' that are unnecessary",
431
- "default": "none"
432
- },
433
- "reportUnnecessaryComparison": {
434
- "$id": "#/properties/reportUnnecessaryComparison",
435
- "$ref": "#/definitions/diagnostic",
436
- "title": "Controls reporting the use of '==' or '!=' comparisons that are unnecessary",
437
- "default": "none"
438
- },
439
- "reportUnnecessaryContains": {
440
- "$id": "#/properties/reportUnnecessaryContains",
441
- "$ref": "#/definitions/diagnostic",
442
- "title": "Controls reporting the use of 'in' operations that are unnecessary",
443
- "default": "none"
444
- },
445
- "reportAssertAlwaysTrue": {
446
- "$id": "#/properties/reportAssertAlwaysTrue",
447
- "$ref": "#/definitions/diagnostic",
448
- "title": "Controls reporting assert expressions that will always evaluate to true",
449
- "default": "warning"
450
- },
451
- "reportSelfClsParameterName": {
452
- "$id": "#/properties/reportSelfClsParameterName",
453
- "$ref": "#/definitions/diagnostic",
454
- "title": "Controls reporting assert expressions that will always evaluate to true",
455
- "default": "warning"
456
- },
457
- "reportImplicitStringConcatenation": {
458
- "$id": "#/properties/reportImplicitStringConcatenation",
459
- "$ref": "#/definitions/diagnostic",
460
- "title": "Controls reporting usage of implicit concatenation of string literals",
461
- "default": "warning"
462
- },
463
- "reportUnboundVariable": {
464
- "$id": "#/properties/reportUnboundVariable",
465
- "$ref": "#/definitions/diagnostic",
466
- "title": "Controls reporting of attempts to use an unbound or possibly unbound variable",
467
- "default": "error"
468
- },
469
- "reportUndefinedVariable": {
470
- "$id": "#/properties/reportUndefinedVariable",
471
- "$ref": "#/definitions/diagnostic",
472
- "title": "Controls reporting of attempts to use an undefined variable",
473
- "default": "error"
474
- },
475
- "reportInvalidStubStatement": {
476
- "$id": "#/properties/reportInvalidStubStatement",
477
- "$ref": "#/definitions/diagnostic",
478
- "title": "Controls reporting of type stub statements that do not conform to PEP 484",
479
- "default": "none"
480
- },
481
- "reportIncompleteStub": {
482
- "$id": "#/properties/reportIncompleteStub",
483
- "$ref": "#/definitions/diagnostic",
484
- "title": "Controls reporting of incomplete type stubs that declare a module-level __getattr__ function",
485
- "default": "none"
486
- },
487
- "reportUnsupportedDunderAll": {
488
- "$id": "#/properties/reportUnsupportedDunderAll",
489
- "$ref": "#/definitions/diagnostic",
490
- "title": "Controls reporting of unsupported operations performed on __all__",
491
- "default": "warning"
492
- },
493
- "reportUnusedCallResult": {
494
- "$id": "#/properties/reportUnusedCallResult",
495
- "$ref": "#/definitions/diagnostic",
496
- "title": "Controls reporting of call expressions whose results are not consumed",
497
- "default": "none"
498
- },
499
- "reportUnusedCoroutine": {
500
- "$id": "#/properties/reportUnusedCoroutine",
501
- "$ref": "#/definitions/diagnostic",
502
- "title": "Controls reporting of call expressions that returns Coroutine whose results are not consumed",
503
- "default": "error"
504
- },
505
- "reportUnusedExpression": {
506
- "$id": "#/properties/reportUnusedExpression",
507
- "$ref": "#/definitions/diagnostic",
508
- "title": "Controls reporting of simple expressions whose value is not used in any way",
509
- "default": "warning"
510
- },
511
- "reportUnnecessaryTypeIgnoreComment": {
512
- "$id": "#/properties/reportUnnecessaryTypeIgnoreComment",
513
- "$ref": "#/definitions/diagnostic",
514
- "title": "Controls reporting of '# type: ignore' comments that have no effect'",
515
- "default": "none"
516
- },
517
- "reportMatchNotExhaustive": {
518
- "$id": "#/properties/reportMatchNotExhaustive",
519
- "$ref": "#/definitions/diagnostic",
520
- "title": "Controls reporting of 'match' statements that do not exhaustively match all possible values",
521
- "default": "none"
522
- },
523
- "reportShadowedImports": {
524
- "$id": "#/properties/reportShadowedImports",
525
- "$ref": "#/definitions/diagnostic",
526
- "title": "Controls reporting of shadowed imports of stdlib modules",
527
- "default": "none"
528
- },
529
- "reportImplicitOverride": {
530
- "$id": "#/properties/reportImplicitOverride",
531
- "$ref": "#/definitions/diagnostic",
532
- "title": "Controls reporting overridden methods that are missing an `@override` decorator",
533
- "default": "none"
534
- },
535
- "extraPaths": {
536
- "$id": "#/properties/extraPaths",
537
- "type": "array",
538
- "title": "Additional import search resolution paths",
539
- "items": {
540
- "$id": "#/properties/extraPaths/items",
541
- "type": "string",
542
- "title": "Additional import search resolution path",
543
- "default": "",
544
- "pattern": "^(.*)$"
545
- }
546
- },
547
- "pythonVersion": {
548
- "$id": "#/properties/pythonVersion",
549
- "type": "string",
550
- "title": "Python version to assume during type analysis",
551
- "default": "",
552
- "examples": [
553
- "3.7"
554
- ],
555
- "pattern": "^3\\.[0-9]+$"
556
- },
557
- "pythonPlatform": {
558
- "$id": "#/properties/pythonPlatform",
559
- "type": "string",
560
- "title": "Python platform to assume during type analysis",
561
- "default": "",
562
- "examples": [
563
- "Linux"
564
- ],
565
- "pattern": "^(Linux|Windows|Darwin|All)$"
566
- },
567
- "venvPath": {
568
- "$id": "#/properties/venvPath",
569
- "type": "string",
570
- "title": "Path to directory containing a folder of virtual environments",
571
- "default": "",
572
- "pattern": "^(.*)$"
573
- },
574
- "venv": {
575
- "$id": "#/properties/venv",
576
- "type": "string",
577
- "title": "Name of virtual environment subdirectory within venvPath",
578
- "default": "",
579
- "examples": [
580
- "python37"
581
- ],
582
- "pattern": "^(.*)$"
583
- },
584
- "verboseOutput": {
585
- "$id": "#/properties/verboseOutput",
586
- "type": "boolean",
587
- "title": "Output verbose logging",
588
- "default": false
589
- },
590
- "executionEnvironments": {
591
- "$id": "#/properties/executionEnvironments",
592
- "type": "array",
593
- "title": "Analysis settings to use for specified subdirectories of code",
594
- "items": {
595
- "$id": "#/properties/executionEnvironments/items",
596
- "type": "object",
597
- "title": "Analysis settings to use for specified subdirectories of code",
598
- "required": [
599
- "root"
600
- ],
601
- "properties": {
602
- "root": {
603
- "$id": "#/properties/executionEnvironments/items/properties/root",
604
- "type": "string",
605
- "title": "Path to code subdirectory to which these settings apply",
606
- "default": "",
607
- "pattern": "^(.*)$"
608
- },
609
- "extraPaths": {
610
- "$id": "#/properties/executionEnvironments/items/properties/extraPaths",
611
- "type": "array",
612
- "title": "Additional import search resolution paths",
613
- "items": {
614
- "$id": "#/properties/executionEnvironments/items/properties/extraPaths/items",
615
- "type": "string",
616
- "title": "Additional import search resolution path",
617
- "default": "",
618
- "pattern": "^(.*)$"
619
- }
620
- },
621
- "pythonVersion": {
622
- "$id": "#/properties/executionEnvironments/items/properties/pythonVersion",
623
- "type": "string",
624
- "title": "Python version to assume during type analysis",
625
- "default": "",
626
- "examples": [
627
- "3.7"
628
- ],
629
- "pattern": "^3\\.[0-9]+$"
630
- },
631
- "pythonPlatform": {
632
- "$id": "#/properties/executionEnvironments/items/properties/pythonPlatform",
633
- "type": "string",
634
- "title": "Python platform to assume during type analysis",
635
- "default": "",
636
- "examples": [
637
- "Linux"
638
- ],
639
- "pattern": "^(Linux|Windows|Darwin|All)$"
640
- }
641
- }
642
- }
643
- }
644
- }
645
- }