mirror of
https://github.com/mtshiba/pylyzer.git
synced 2025-08-04 14:28:24 +00:00
extension: remove CheckOnType
option
This commit is contained in:
parent
7c6a12b24c
commit
fddcf2f228
3 changed files with 3 additions and 9 deletions
|
@ -37,4 +37,3 @@ cargo install pylyzer
|
|||
| pylyzer.diagnostics | Enable diagnostics | true |
|
||||
| pylyzer.inlayHints | Enable inlay hints (this feature is unstable) | false |
|
||||
| pylyzer.smartCompletion | Enable smart completion (see [ELS features](https://github.com/erg-lang/erg/blob/main/crates/els/doc/features.md))| true |
|
||||
| pylyzer.checkOnType | Perform checking each time any character is entered. This improves the accuracy of completion, etc., but may slow down the execution | false |
|
||||
|
|
4
extension/package-lock.json
generated
4
extension/package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "pylyzer",
|
||||
"version": "0.1.5",
|
||||
"version": "0.1.7",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "pylyzer",
|
||||
"version": "0.1.5",
|
||||
"version": "0.1.7",
|
||||
"dependencies": {
|
||||
"vscode-languageclient": "^8.0.2"
|
||||
},
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"displayName": "pylyzer",
|
||||
"description": "A fast Python static code analyzer & language server for VSCode",
|
||||
"publisher": "pylyzer",
|
||||
"version": "0.1.6",
|
||||
"version": "0.1.7",
|
||||
"engines": {
|
||||
"vscode": "^1.70.0"
|
||||
},
|
||||
|
@ -58,11 +58,6 @@
|
|||
"type": "boolean",
|
||||
"default": true,
|
||||
"markdownDescription": "Enable smart completion (see [ELS features](https://github.com/erg-lang/erg/blob/main/crates/els/doc/features.md))"
|
||||
},
|
||||
"pylyzer.checkOnType": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"markdownDescription": "Perform checking each time any character is entered. This improves the accuracy of completion, etc., but may slow down the execution"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue