extension: remove CheckOnType option

This commit is contained in:
Shunsuke Shibayama 2023-05-13 21:28:02 +09:00
parent 7c6a12b24c
commit fddcf2f228
3 changed files with 3 additions and 9 deletions

View file

@ -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 |

View file

@ -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"
},

View file

@ -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"
}
}
}