coc-pyright 1.1.210 → 1.1.215

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.210",
3
+ "version": "1.1.215",
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",
@@ -765,6 +765,17 @@
765
765
  "error"
766
766
  ]
767
767
  },
768
+ "reportMatchNotExhaustive": {
769
+ "type": "string",
770
+ "description": "Diagnostics for 'match' statements that do not exhaustively match all possible values.",
771
+ "default": "none",
772
+ "enum": [
773
+ "none",
774
+ "information",
775
+ "warning",
776
+ "error"
777
+ ]
778
+ },
768
779
  "reportUnnecessaryTypeIgnoreComment": {
769
780
  "type": "string",
770
781
  "description": "Diagnostics for '# type: ignore' comments that have no effect.",
@@ -1380,6 +1391,6 @@
1380
1391
  ]
1381
1392
  },
1382
1393
  "dependencies": {
1383
- "pyright": "^1.1.210"
1394
+ "pyright": "^1.1.215"
1384
1395
  }
1385
1396
  }
@@ -473,6 +473,12 @@
473
473
  "title": "Controls reporting of '# type: ignore' comments that have no effect'",
474
474
  "default": "none"
475
475
  },
476
+ "reportMatchNotExhaustive": {
477
+ "$id": "#/properties/reportMatchNotExhaustive",
478
+ "$ref": "#/definitions/diagnostic",
479
+ "title": "Controls reporting of 'match' statements that do not exhaustively match all possible values",
480
+ "default": "none"
481
+ },
476
482
  "extraPaths": {
477
483
  "$id": "#/properties/extraPaths",
478
484
  "type": "array",