coc-pyright 1.1.331 → 1.1.333
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/README.md +1 -1
- package/lib/index.js +14443 -13462
- 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.333",
|
|
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",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@types/which": "^3.0.0",
|
|
43
43
|
"@typescript-eslint/eslint-plugin": "^6.4.1",
|
|
44
44
|
"@typescript-eslint/parser": "^6.4.1",
|
|
45
|
-
"@zzzen/pyright-internal": "^1.2.0-dev.
|
|
45
|
+
"@zzzen/pyright-internal": "^1.2.0-dev.20231022",
|
|
46
46
|
"coc.nvim": "^0.0.83-next.18",
|
|
47
47
|
"diff-match-patch": "^1.0.5",
|
|
48
48
|
"esbuild": "^0.19.2",
|
|
@@ -1344,6 +1344,21 @@
|
|
|
1344
1344
|
"description": "Path to Black, you can use a custom version of Black by modifying this setting to include the full path.",
|
|
1345
1345
|
"scope": "resource"
|
|
1346
1346
|
},
|
|
1347
|
+
"python.formatting.ruffArgs": {
|
|
1348
|
+
"type": "array",
|
|
1349
|
+
"description": "Arguments passed in. Each argument is a separate item in the array.",
|
|
1350
|
+
"default": [],
|
|
1351
|
+
"items": {
|
|
1352
|
+
"type": "string"
|
|
1353
|
+
},
|
|
1354
|
+
"scope": "resource"
|
|
1355
|
+
},
|
|
1356
|
+
"python.formatting.ruffPath": {
|
|
1357
|
+
"type": "string",
|
|
1358
|
+
"default": "ruff",
|
|
1359
|
+
"description": "Path to ruff, you can use a custom version of ruff by modifying this setting to include the full path.",
|
|
1360
|
+
"scope": "resource"
|
|
1361
|
+
},
|
|
1347
1362
|
"python.formatting.pyinkArgs": {
|
|
1348
1363
|
"type": "array",
|
|
1349
1364
|
"description": "Arguments passed in. Each argument is a separate item in the array.",
|
|
@@ -1356,7 +1371,7 @@
|
|
|
1356
1371
|
"python.formatting.pyinkPath": {
|
|
1357
1372
|
"type": "string",
|
|
1358
1373
|
"default": "pyink",
|
|
1359
|
-
"description": "Path to Pyink, you can use a custom version of
|
|
1374
|
+
"description": "Path to Pyink, you can use a custom version of pyink by modifying this setting to include the full path.",
|
|
1360
1375
|
"scope": "resource"
|
|
1361
1376
|
},
|
|
1362
1377
|
"python.formatting.darkerArgs": {
|
|
@@ -1433,6 +1448,7 @@
|
|
|
1433
1448
|
"pyink",
|
|
1434
1449
|
"blackd",
|
|
1435
1450
|
"yapf",
|
|
1451
|
+
"ruff",
|
|
1436
1452
|
"none"
|
|
1437
1453
|
],
|
|
1438
1454
|
"scope": "resource"
|
|
@@ -1543,7 +1559,7 @@
|
|
|
1543
1559
|
"commands": [
|
|
1544
1560
|
{
|
|
1545
1561
|
"command": "python.sortImports",
|
|
1546
|
-
"title": "Sort Imports by isort",
|
|
1562
|
+
"title": "Sort Imports by isort or ruff",
|
|
1547
1563
|
"category": "Pyright"
|
|
1548
1564
|
},
|
|
1549
1565
|
{
|
|
@@ -1584,6 +1600,6 @@
|
|
|
1584
1600
|
]
|
|
1585
1601
|
},
|
|
1586
1602
|
"dependencies": {
|
|
1587
|
-
"pyright": "^1.1.
|
|
1603
|
+
"pyright": "^1.1.333"
|
|
1588
1604
|
}
|
|
1589
1605
|
}
|