-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
2234 lines (2234 loc) · 72.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "coc-pyright",
"version": "1.1.385",
"description": "Pyright extension for coc.nvim, static type checker for Python",
"author": "Heyward Fann <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"coc.nvim",
"python",
"pyright"
],
"engines": {
"coc": "^0.0.80"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fannheyward/coc-pyright.git"
},
"activationEvents": [
"onLanguage:python",
"workspaceContains:app.py",
"workspaceContains:Pipfile",
"workspaceContains:setup.py",
"workspaceContains:manage.py",
"workspaceContains:pyproject.toml",
"workspaceContains:requirements.txt",
"workspaceContains:pyrightconfig.json"
],
"scripts": {
"schema": "node diff.mjs",
"lint": "biome check src",
"build": "node esbuild.mjs",
"prepare": "node esbuild.mjs"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/diff-match-patch": "^1.0.36",
"@types/md5": "^2.3.5",
"@types/minimatch": "^5.1.2",
"@types/node": "16",
"@types/which": "^3.0.4",
"@zzzen/pyright-internal": "^1.2.0-dev.20241020",
"coc.nvim": "^0.0.83-next.18",
"diff-match-patch": "^1.0.5",
"esbuild": "^0.24.0",
"get-port": "^7.1.0",
"iconv-lite": "^0.6.3",
"md5": "^2.3.0",
"minimatch": "^10.0.1",
"named-js-regexp": "^1.3.5",
"rxjs": "^7.8.1",
"tree-kill": "^1.2.2",
"typescript": "^5.6.2",
"which": "^4.0.0"
},
"prettier": {
"singleQuote": true,
"printWidth": 180,
"semi": true
},
"contributes": {
"rootPatterns": [
{
"filetype": "python",
"patterns": [
"app.py",
"tox.ini",
"Pipfile",
"setup.py",
"setup.cfg",
"manage.py",
"pytest.ini",
"pyproject.toml",
"requirements.txt",
"pyrightconfig.json"
]
}
],
"jsonValidation": [
{
"fileMatch": "pyrightconfig.json",
"url": "https://raw.githubusercontent.com/microsoft/pyright/main/packages/vscode-pyright/schemas/pyrightconfig.schema.json"
}
],
"configuration": {
"type": "object",
"title": "coc-pyright configuration",
"properties": {
"pyright.enable": {
"type": "boolean",
"default": true,
"description": "Enable coc-pyright extension"
},
"pyright.inlayHints.functionReturnTypes": {
"type": "boolean",
"default": true,
"description": "Enable/disable inlay hints for function return types"
},
"pyright.inlayHints.variableTypes": {
"type": "boolean",
"default": true,
"description": "Enable/disable inlay hints for variable types"
},
"pyright.inlayHints.parameterTypes": {
"type": "boolean",
"default": true,
"description": "Enable/disable inlay hints for parameter types"
},
"python.analysis.indexing": {
"type": "boolean",
"default": true,
"description": "Index installed third party libraries and user files for language features such as auto-import, add import, workspace symbols and etc.",
"scope": "resource"
},
"python.analysis.extraPaths": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "Additional import search resolution paths",
"scope": "resource"
},
"python.analysis.typeshedPaths": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "Paths to look for typeshed modules.",
"scope": "resource"
},
"python.analysis.autoImportCompletions": {
"type": "boolean",
"default": true,
"description": "Offer auto-import completions.",
"scope": "resource"
},
"python.analysis.autoSearchPaths": {
"type": "boolean",
"default": true,
"description": "Automatically add common search paths like 'src'?",
"scope": "resource"
},
"python.analysis.stubPath": {
"type": "string",
"default": "typings",
"description": "Path to directory containing custom type stub files.",
"scope": "resource"
},
"python.analysis.diagnosticMode": {
"type": "string",
"default": "openFilesOnly",
"enum": [
"openFilesOnly",
"workspace"
],
"enumDescriptions": [
"Analyzes and reports errors on only open files.",
"Analyzes and reports errors on all files in the workspace."
],
"scope": "resource"
},
"python.analysis.include": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "Paths of directories or files that should be included. If no paths are specified, pyright defaults to the workspace root directory. Paths may contain wildcard characters ** (a directory or multiple levels of directories), * (a sequence of zero or more characters), or ? (a single character).",
"scope": "resource"
},
"python.analysis.exclude": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "Paths of directories or files that should not be included. These override the include directories, allowing specific subdirectories to be excluded. Note that files in the exclude paths may still be included in the analysis if they are referenced (imported) by source files that are not excluded. Paths may contain wildcard characters ** (a directory or multiple levels of directories), * (a sequence of zero or more characters), or ? (a single character). If no exclude paths are specified, pyright automatically excludes the following: `**/node_modules`, `**/__pycache__`, `.git` and any virtual environment directories.",
"scope": "resource"
},
"python.analysis.ignore": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "Paths of directories or files whose diagnostic output (errors and warnings) should be suppressed even if they are an included file or within the transitive closure of an included file. Paths may contain wildcard characters ** (a directory or multiple levels of directories), * (a sequence of zero or more characters), or ? (a single character). If no value is provided, the value of python.linting.ignorePatterns (if set) will be used.",
"scope": "resource"
},
"python.analysis.diagnosticSeverityOverrides": {
"type": "object",
"description": "Allows a user to override the severity levels for individual diagnostics. Use the rule name as a key and one of \"error\", \"warning\", \"information\", \"none\", `true` (alias for \"error\") or `false` (alias for \"none\") as value. The default value shown for each diagnostic is the default when \"python.analysis.typeCheckingMode\" is set to \"standard\". See [here](https://github.com/microsoft/pyright/blob/main/docs/configuration.md#diagnostic-rule-defaults) for defaults for each type checking mode (\"off\", \"basic\", \"standard\", and \"strict\").",
"scope": "resource",
"properties": {
"reportGeneralTypeIssues": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for general type inconsistencies, unsupported operations, argument/parameter mismatches, etc. Covers all of the basic type-checking rules not covered by other rules. Does not include syntax errors.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportPropertyTypeMismatch": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for property whose setter and getter have mismatched types.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportFunctionMemberAccess": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for member accesses on functions.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportMissingImports": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for imports that have no corresponding imported python file or type stub file.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportMissingModuleSource": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for imports that have no corresponding source file. This happens when a type stub is found, but the module source file was not found, indicating that the code may fail at runtime when using this execution environment. Type checking will be done using the type stub.",
"default": "warning",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportInvalidTypeForm": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for type expression that uses an invalid form.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportMissingTypeStubs": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for imports that have no corresponding type stub file (either a typeshed file or a custom type stub). The type checker requires type stubs to do its best job at analysis.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportImportCycles": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for cyclical import chains. These are not errors in Python, but they do slow down type analysis and often hint at architectural layering issues. Generally, they should be avoided.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportUnusedImport": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for an imported symbol that is not referenced within that file.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportUnusedClass": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for a class with a private name (starting with an underscore) that is not accessed.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportUnusedFunction": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for a function or method with a private name (starting with an underscore) that is not accessed.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportUnusedVariable": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for a variable that is not accessed.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportDuplicateImport": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for an imported symbol or module that is imported more than once.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportWildcardImportFromLibrary": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for an wildcard import from an external library.",
"default": "warning",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportAbstractUsage": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for an attempt to instantiate an abstract or protocol class or use an abstract method.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportArgumentType": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for a type incompatibility for an argument to a call.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportAssertTypeFailure": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for a type incompatibility detected by a typing.assert_type call.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportAssignmentType": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for type incompatibilities for assignments.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportAttributeAccessIssue": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for issues involving attribute accesses.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportCallIssue": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for issues involving call expressions and arguments.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportInconsistentOverload": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for inconsistencies between function overload signatures and implementation.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportIndexIssue": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics related to index operations and expressions.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportInvalidTypeArguments": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for invalid type argument usage.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportNoOverloadImplementation": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for an overloaded function or method with a missing implementation.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportOperatorIssue": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for related to unary or binary operators.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportOptionalSubscript": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for an attempt to subscript (index) a variable with an Optional type.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportOptionalMemberAccess": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for an attempt to access a member of a variable with an Optional type.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportOptionalCall": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for an attempt to call a variable with an Optional type.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportOptionalIterable": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for an attempt to use an Optional type as an iterable value (e.g. within a for statement).",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportOptionalContextManager": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for an attempt to use an Optional type as a context manager (as a parameter to a with statement).",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportOptionalOperand": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for an attempt to use an Optional type as an operand to a binary or unary operator (like '+', '==', 'or', 'not').",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportRedeclaration": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for an attempt to declare the type of a symbol multiple times.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportReturnType": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics related to function return type compatibility.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportTypedDictNotRequiredAccess": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for an attempt to access a non-required key within a TypedDict without a check for its presence.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportUntypedFunctionDecorator": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for function decorators that have no type annotations. These obscure the function type, defeating many type analysis features.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportUntypedClassDecorator": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for class decorators that have no type annotations. These obscure the class type, defeating many type analysis features.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportUntypedBaseClass": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for base classes whose type cannot be determined statically. These obscure the class type, defeating many type analysis features.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportUntypedNamedTuple": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics when “namedtuple” is used rather than “NamedTuple”. The former contains no type information, whereas the latter does.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportPrivateUsage": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for incorrect usage of private or protected variables or functions. Protected class members begin with a single underscore _ and can be accessed only by subclasses. Private class members begin with a double underscore but do not end in a double underscore and can be accessed only within the declaring class. Variables and functions declared outside of a class are considered private if their names start with either a single or double underscore, and they cannot be accessed outside of the declaring module.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportTypeCommentUsage": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for usage of deprecated type comments.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportPrivateImportUsage": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for incorrect usage of symbol imported from a \"py.typed\" module that is not re-exported from that module.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportConstantRedefinition": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for attempts to redefine variables whose names are all-caps with underscores and numerals.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportDeprecated": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for use of deprecated classes or functions.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportIncompatibleMethodOverride": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for methods that override a method of the same name in a base class in an incompatible manner (wrong number of parameters, incompatible parameter types, or incompatible return type).",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportIncompatibleVariableOverride": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for overrides in subclasses that redefine a variable in an incompatible way.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportInconsistentConstructor": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for __init__ and __new__ methods whose signatures are inconsistent.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportOverlappingOverload": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for function overloads that overlap in signature and obscure each other or have incompatible return types.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportPossiblyUnboundVariable": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for the use of variables that may be unbound on some code paths.",
"default": "error",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportMissingSuperCall": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for missing call to parent class for inherited `__init__` methods.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportUninitializedInstanceVariable": {
"type": [
"string",
"boolean"
],
"description": "Diagnostics for instance variables that are not declared or initialized within class body or `__init__` method.",
"default": "none",
"enum": [
"none",
"information",
"warning",
"error",
true,
false
]
},
"reportInvalidStringEscapeSequence": {
"type": [
"string",
"boolean"