bmewburn / vscode-intelephense

PHP intellisense for Visual Studio Code
https://intelephense.com
Other
1.61k stars 94 forks source link

Make Telemetry "Opt-in" #2790

Open madflow opened 8 months ago

madflow commented 8 months ago

Feature description or problem with existing feature Telemetry is currently set to "Opt Out".

Describe the solution you'd like Make Telemetry "Opt In" and explain maybe why it would be helpful to enable it.

Additional context I use Neovim and have to disable Telemetry like so:


return {
  --- https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md
  {
    "neovim/nvim-lspconfig",
    opts = {
      servers = {
        intelephense = {
          settings = {
            intelephense = {
              telemetry = {
                enable = false,
              },
            },
          },
        },
      },
    },
  },
}