Skip to content

Commit

Permalink
disable langauge server by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Sander Ronde committed Feb 29, 2024
1 parent 5d14a0c commit ab178bd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@
},
"phpstan.enableLanguageServer": {
"type": "boolean",
"description": "Enable language server that provides on-hover information. Disable this if you have a custom PHPStan binary that runs on another filesystem (such as Docker). Does not work with PHPStan Pro enabled or for PHPStan version < 1.8.0.",
"default": true
"description": "Enable language server that provides on-hover type information. Disable this if you have a custom PHPStan binary that runs on another filesystem (such as Docker). Does not work with PHPStan Pro enabled or for PHPStan version < 1.8.0.",
"default": false
},
"phpstan.ignoreErrors": {
"type": "array",
Expand Down
7 changes: 4 additions & 3 deletions shared/commands/defs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,16 +137,17 @@ export const config = {
'phpstan.showProgress': {
jsonDefinition: {
type: 'boolean',
description: 'Show the progress bar when performing a single-file check',
description:
'Show the progress bar when performing a single-file check',
default: false,
},
},
'phpstan.enableLanguageServer': {
jsonDefinition: {
type: 'boolean',
description:
'Enable language server that provides on-hover information. Disable this if you have a custom PHPStan binary that runs on another filesystem (such as Docker). Does not work with PHPStan Pro enabled or for PHPStan version < 1.8.0.',
default: true,
'Enable language server that provides on-hover type information. Disable this if you have a custom PHPStan binary that runs on another filesystem (such as Docker). Does not work with PHPStan Pro enabled or for PHPStan version < 1.8.0.',
default: false,
},
},
'phpstan.ignoreErrors': {
Expand Down

0 comments on commit ab178bd

Please sign in to comment.