coc-pyright 1.1.206 → 1.1.208

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.206",
3
+ "version": "1.1.208",
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",
@@ -468,6 +468,17 @@
468
468
  "error"
469
469
  ]
470
470
  },
471
+ "reportInconsistentConstructor": {
472
+ "type": "string",
473
+ "description": "Diagnostics for __init__ and __new__ methods whose signatures are inconsistent.",
474
+ "default": "none",
475
+ "enum": [
476
+ "none",
477
+ "information",
478
+ "warning",
479
+ "error"
480
+ ]
481
+ },
471
482
  "reportOverlappingOverload": {
472
483
  "type": "string",
473
484
  "description": "Diagnostics for function overloads that overlap in signature and obscure each other or have incompatible return types.",
@@ -1358,6 +1369,6 @@
1358
1369
  ]
1359
1370
  },
1360
1371
  "dependencies": {
1361
- "pyright": "^1.1.206"
1372
+ "pyright": "^1.1.208"
1362
1373
  }
1363
1374
  }
@@ -305,6 +305,12 @@
305
305
  "title": "Controls reporting of overrides in subclasses that redefine a variable in an incompatible way",
306
306
  "default": "none"
307
307
  },
308
+ "reportInconsistentConstructor": {
309
+ "$id": "#/properties/reportInconsistentConstructor",
310
+ "$ref": "#/definitions/diagnostic",
311
+ "title": "Controls reporting of __init__ and __new__ methods whose signatures are inconsistent",
312
+ "default": "none"
313
+ },
308
314
  "reportOverlappingOverload": {
309
315
  "$id": "#/properties/reportOverlappingOverload",
310
316
  "$ref": "#/definitions/diagnostic",