Horacio Sanson
Horacio Sanson
There is a linter issue that causes the test to fail. After that is fixed I can merge this: ``` ./autoload/ale/fixers/biome.vim:7 Blank line required before `if`. ```
@redbmk if you could fix the conflict I can merge this.
There is people that do use languagetool for Markdown and Asciidoc: - https://github.com/dense-analysis/ale/pull/3334 - https://github.com/dense-analysis/ale/pull/3229 - https://github.com/dense-analysis/ale/issues/3220 - https://github.com/dense-analysis/ale/pull/2155 Rather that remove support for LanguateTool for asciidoc and markdown that...
Add this to your configuration for the desired result: ``` let g:ale_linters_ignore = { \ 'markdown': ['languagetool'], \ 'asciidoc': ['languagetool'] \} ```
Still learning how to use libopenapi for testing but this example seems to work: - https://pkg.go.dev/github.com/pb33f/libopenapi-validator#example-NewValidator-ValidateHttpRequestResponse Specific snippet: ```go // 7. Validate! valid, validationErrs := docValidator.ValidateHttpRequestResponse(request, recorder.Result()) ```
Also there is a linter error: > ale_linters/verilog/xvlog.vim:6:14: Use robust operators `==#` or `==?` instead of `==` (see Google VimScript Style Guide (Matching))
Note that flow-language-server is also deprecated. Flow itself now has a language server by running `flow lsp`. https://github.com/facebookarchive/flow-language-server
Related: #3006
Would be great if the language-server also supported `--ignore-file` flag.
Having same issue when updating tests for `ale`. If you add the commands to update alpine distribution to version 3.17.10 on your Docker file and also add the `lua5.1-lpeg` package...