We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Name: PerlNavigator URL: https://github.com/bscan/PerlNavigator/
To my knowledge there are two perl language servers around. One already has a new-tool issue in #3496. This issue covers the other one, PerlNavigator.
Unfortunately PerlNavigator currently has buggy behaviour ignoring capabilities in its initialize method and can thus not easily be used with ale. Unless one applies the patch posted in that bug report, of course.
As for configuring it with ale, this appears to be working: (project_root function is lazily reused from #3496):
call ale#linter#Define('perl', { \ 'name': 'perlnavigator', \ 'lsp': 'stdio', \ 'executable': s:perlnavigator_executable, \ 'command': '%e --stdio', \ 'lsp_config': { \ 'perlnavigator': { \ 'perlPath': 'perl', \ 'enableWarnings': 1, \ 'perltidyProfile': '', \ 'perlcriticProfile': '', \ 'perlcriticEnabled': 1, \ }, \ }, \ 'project_root': function('PLLSGetProjectRoot'), \ })
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Name: PerlNavigator
URL: https://github.com/bscan/PerlNavigator/
To my knowledge there are two perl language servers around. One already has a new-tool issue in #3496. This issue covers the other one, PerlNavigator.
Unfortunately PerlNavigator currently has buggy behaviour ignoring capabilities in its initialize method and can thus not easily be used with ale. Unless one applies the patch posted in that bug report, of course.
As for configuring it with ale, this appears to be working: (project_root function is lazily reused from #3496):
The text was updated successfully, but these errors were encountered: