coc-pyright 1.1.336 → 1.1.337
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 -0
- package/lib/index.js +89 -114015
- package/package.json +19 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coc-pyright",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.337",
|
|
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",
|
|
@@ -34,29 +34,26 @@
|
|
|
34
34
|
"prepare": "node esbuild.mjs"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@types/diff-match-patch": "^1.0.
|
|
38
|
-
"@types/md5": "^2.
|
|
37
|
+
"@types/diff-match-patch": "^1.0.36",
|
|
38
|
+
"@types/md5": "^2.3.5",
|
|
39
39
|
"@types/minimatch": "^5.1.2",
|
|
40
40
|
"@types/node": "16",
|
|
41
|
-
"@types/
|
|
42
|
-
"@
|
|
43
|
-
"@typescript-eslint/
|
|
44
|
-
"@
|
|
45
|
-
"@zzzen/pyright-internal": "^1.2.0-dev.20231112",
|
|
41
|
+
"@types/which": "^3.0.3",
|
|
42
|
+
"@typescript-eslint/eslint-plugin": "^6.12.0",
|
|
43
|
+
"@typescript-eslint/parser": "^6.12.0",
|
|
44
|
+
"@zzzen/pyright-internal": "^1.2.0-dev.20231119",
|
|
46
45
|
"coc.nvim": "^0.0.83-next.18",
|
|
47
46
|
"diff-match-patch": "^1.0.5",
|
|
48
|
-
"esbuild": "^0.19.
|
|
49
|
-
"eslint": "^8.
|
|
47
|
+
"esbuild": "^0.19.7",
|
|
48
|
+
"eslint": "^8.54.0",
|
|
50
49
|
"get-port": "^6.1.2",
|
|
51
|
-
"iconv-lite": "^0.6.
|
|
50
|
+
"iconv-lite": "^0.6.3",
|
|
52
51
|
"md5": "^2.3.0",
|
|
53
52
|
"named-js-regexp": "^1.3.5",
|
|
54
|
-
"rxjs": "^7.
|
|
55
|
-
"rxjs-compat": "^6.6.7",
|
|
56
|
-
"semver": "^7.3.2",
|
|
53
|
+
"rxjs": "^7.8.1",
|
|
57
54
|
"tree-kill": "^1.2.2",
|
|
58
|
-
"typescript": "^5.
|
|
59
|
-
"which": "^
|
|
55
|
+
"typescript": "^5.3.2",
|
|
56
|
+
"which": "^4.0.0"
|
|
60
57
|
},
|
|
61
58
|
"prettier": {
|
|
62
59
|
"singleQuote": true,
|
|
@@ -104,6 +101,11 @@
|
|
|
104
101
|
"default": true,
|
|
105
102
|
"description": "Enable/disable inlay hints for variable types"
|
|
106
103
|
},
|
|
104
|
+
"pyright.inlayHints.parameterTypes": {
|
|
105
|
+
"type": "boolean",
|
|
106
|
+
"default": true,
|
|
107
|
+
"description": "Enable/disable inlay hints for parameter types"
|
|
108
|
+
},
|
|
107
109
|
"python.analysis.indexing": {
|
|
108
110
|
"type": "boolean",
|
|
109
111
|
"default": true,
|
|
@@ -1947,6 +1949,6 @@
|
|
|
1947
1949
|
]
|
|
1948
1950
|
},
|
|
1949
1951
|
"dependencies": {
|
|
1950
|
-
"pyright": "^1.1.
|
|
1952
|
+
"pyright": "^1.1.337"
|
|
1951
1953
|
}
|
|
1952
1954
|
}
|