yaegassy / coc-intelephense

intelephense (PHP language server) extension for coc.nvim. intelephense’s various LSP features and this extension's additional features are available.
https://www.npmjs.com/package/@yaegassy/coc-intelephense
MIT License
98 stars 4 forks source link

@intelephense-ignore-line does not work #30

Closed axkirillov closed 2 years ago

axkirillov commented 2 years ago

It seems that this feature https://github.com/yaegassy/coc-intelephense/pull/16 does not work for me When I trigger CocAction I don't see this option, and adding it manually does not really turn the warning off. I'm using neovim v0.7.0 and ✓ @yaegassy/coc-intelephense Current version 0.18.2 is up to date.

yaegassy commented 2 years ago

This feature is disabled (false) by default. Try setting intelephense.client.diagnosticsIgnoreErrorFeature to true in coc-settings.json

{
  // ...snip
  "intelephense.client.diagnosticsIgnoreErrorFeature": true,
  // ...snip
}
axkirillov commented 2 years ago

@yaegassy thank you!