coc-pyright 1.1.208 → 1.1.210
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coc-pyright",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.210",
|
|
4
4
|
"description": "Pyright extension for coc.nvim, static type checker for Python",
|
|
5
5
|
"author": "Heyward Fann <fannheyward@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -490,6 +490,17 @@
|
|
|
490
490
|
"error"
|
|
491
491
|
]
|
|
492
492
|
},
|
|
493
|
+
"reportMissingSuperCall": {
|
|
494
|
+
"type": "string",
|
|
495
|
+
"description": "Diagnostics for missing call to parent class for inherited `__init__` methods.",
|
|
496
|
+
"default": "none",
|
|
497
|
+
"enum": [
|
|
498
|
+
"none",
|
|
499
|
+
"information",
|
|
500
|
+
"warning",
|
|
501
|
+
"error"
|
|
502
|
+
]
|
|
503
|
+
},
|
|
493
504
|
"reportUninitializedInstanceVariable": {
|
|
494
505
|
"type": "string",
|
|
495
506
|
"description": "Diagnostics for instance variables that are not declared or initialized within class body or `__init__` method.",
|
|
@@ -1369,6 +1380,6 @@
|
|
|
1369
1380
|
]
|
|
1370
1381
|
},
|
|
1371
1382
|
"dependencies": {
|
|
1372
|
-
"pyright": "^1.1.
|
|
1383
|
+
"pyright": "^1.1.210"
|
|
1373
1384
|
}
|
|
1374
1385
|
}
|
|
@@ -317,6 +317,12 @@
|
|
|
317
317
|
"title": "Controls reporting of function overloads that overlap in signature and obscure each other or do not agree on return type",
|
|
318
318
|
"default": "none"
|
|
319
319
|
},
|
|
320
|
+
"reportMissingSuperCall": {
|
|
321
|
+
"$id": "#/properties/reportMissingSuperCall",
|
|
322
|
+
"$ref": "#/definitions/diagnostic",
|
|
323
|
+
"title": "Controls reporting of missing call to parent class for inherited `__init__` methods",
|
|
324
|
+
"default": "none"
|
|
325
|
+
},
|
|
320
326
|
"reportUninitializedInstanceVariable": {
|
|
321
327
|
"$id": "#/properties/reportUninitializedInstanceVariable",
|
|
322
328
|
"$ref": "#/definitions/diagnostic",
|