SanderRonde / phpstan-vscode

PHPStan plugin for VSCode
https://marketplace.visualstudio.com/items?itemName=SanderRonde.phpstan-vscode
MIT License
37 stars 7 forks source link

Description text for phpstan.showProgress is incorrect #51

Closed rubinlinux closed 5 months ago

rubinlinux commented 5 months ago

phpstan.showProgress definition in package.json and defs.ts are copied and pasted from another setting without the description field changed.

I will post a matching pull request to solve it in a few minutes providing:

                "phpstan.showProgress": {
                    "type": "boolean",
-                   "description": "Stop showing an error when the operation times out",
+                   "description": "Show the progress bar when performing a single-file check",
                    "default": false
                },
                "phpstan.enableLanguageServer": {

and

    'phpstan.showProgress': {
        jsonDefinition: {
            type: 'boolean',
-           description: 'Stop showing an error when the operation times out',
+           description: 'Show the progress bar when performing a single-file check',
            default: false,
        },
    },