coc-pyright 1.1.351 → 1.1.360
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/lib/index.js +114341 -89
- package/package.json +21 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coc-pyright",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.360",
|
|
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",
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"@types/minimatch": "^5.1.2",
|
|
40
40
|
"@types/node": "16",
|
|
41
41
|
"@types/which": "^3.0.3",
|
|
42
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
43
|
-
"@typescript-eslint/parser": "^
|
|
44
|
-
"@zzzen/pyright-internal": "^1.2.0-dev.
|
|
42
|
+
"@typescript-eslint/eslint-plugin": "^7.1.0",
|
|
43
|
+
"@typescript-eslint/parser": "^7.1.0",
|
|
44
|
+
"@zzzen/pyright-internal": "^1.2.0-dev.20240421",
|
|
45
45
|
"coc.nvim": "^0.0.83-next.18",
|
|
46
46
|
"diff-match-patch": "^1.0.5",
|
|
47
47
|
"esbuild": "^0.20.0",
|
|
@@ -1331,6 +1331,22 @@
|
|
|
1331
1331
|
false
|
|
1332
1332
|
]
|
|
1333
1333
|
},
|
|
1334
|
+
"reportUnhashable": {
|
|
1335
|
+
"type": [
|
|
1336
|
+
"string",
|
|
1337
|
+
"boolean"
|
|
1338
|
+
],
|
|
1339
|
+
"description": "Diagnostics for the use of an unhashable object in a container that requires hashability.",
|
|
1340
|
+
"default": "error",
|
|
1341
|
+
"enum": [
|
|
1342
|
+
"none",
|
|
1343
|
+
"information",
|
|
1344
|
+
"warning",
|
|
1345
|
+
"error",
|
|
1346
|
+
true,
|
|
1347
|
+
false
|
|
1348
|
+
]
|
|
1349
|
+
},
|
|
1334
1350
|
"reportUnsupportedDunderAll": {
|
|
1335
1351
|
"type": [
|
|
1336
1352
|
"string",
|
|
@@ -2214,6 +2230,6 @@
|
|
|
2214
2230
|
]
|
|
2215
2231
|
},
|
|
2216
2232
|
"dependencies": {
|
|
2217
|
-
"pyright": "^1.1.
|
|
2233
|
+
"pyright": "^1.1.360"
|
|
2218
2234
|
}
|
|
2219
2235
|
}
|