summaryrefslogtreecommitdiff
path: root/test/command_callback
AgeCommit message (Collapse)Author
2021-03-14Check user systemd unit files with systemd-analyzew0rp
2021-03-14Close #2102 - Add support for the Angular language serverw0rp
2021-03-12Fix texlab#GetProjectRoot (#3610)ourigen
* Fix texlab GetProjectRoot * Fix indents in texlab#GetProjectRoot * Prevent texlab from starting on every tex file * Update texlab Vader tests * Fix GetProjectRoot to return parent of .git Previously, the function returned `../.git/`. We want the function to return the parent directory above that as the project root. This should help pass Vader tests.
2021-03-01Close #2281 - Separate cwd commands from commandsw0rp
Working directories are now set seperately from the commands so they can later be swapped out when running linters over projects is supported, and also better support filename mapping for running linters on other machines in future.
2021-02-28Fix ansible-lint linter definition. (#3601)serapas
* Fix ansible-lint linter definition. Use ansible-lint's feature auto-detection instead of temporary file. For auto-detection to work, ansible project has to be also a git repository. Don't use yaml rules. These are checked by yamllint. Refactor pattern to work with ansible-lint >=5.0 version. Clean-up obsolete test cases. * Pull Request changes
2021-02-23Fix 3537 - remove -T argument from ruby linter (#3538)Horacio Sanson
Co-authored-by: Horacio Sanson <horacio@allm.inc>
2021-02-21Add a buildifier fixer for Bazel files (#3499)Jon Parise
This fixer enables buildifier's formatting and "lint fix" modes. Additional options can be provided via `bazel_buildifier_options`. It also implements some basic logic for guessing the file's type. buildifier itself usually does this based on the filenames provided on the command line, but because we're piping our buffer via stdin, we need to do this manually.
2021-02-18Added ocamllsp (#3595)Risto Stevcev
* Added ocamllsp * Update ordering in docs to be alphabetical * Updated expected result in test
2021-02-18Make markdown vale linter command configurable with options (#3594)David Balatero
* Make vale command user-configurable * Add test for vale options * Typo in test Co-authored-by: David Balatero <dbalatero@stripe.com>
2021-02-14Allow clangformat to use a local style file (#3587)Mukund Mauji
* Allow clangformat to use a local style file. * Add tests. * Fix Vint issue. * Improve explanation of feature in documentation. * Fix failing test. The test was checking the wrong directory.
2021-02-11mypy: Pass user options before any others (#3582)Daniel Leong
This enables us to use a custom `python` exe as the "mypy" executable and pass `-m mypy` in `mypy_options`
2021-02-11Verilator current file search path (#3500)Tarik Graba
* Simplify verilator linter using ale command format strings * Verilator Linter: Restructure linter command tests * Verilator Linter: adds to the handler test the returned filename * Verilator Linter: add the current file path to the search path * Verilator Linter: Add the search path to the tests Co-authored-by: TG <tarik.graba@telecom-paris.fr>
2021-02-06Fix #3579 - Escape cppcheck arguments for Windowsv3.1.0w0rp
2021-02-06Merge pull request #3571 from rfwatson/gopls-add-init-optionsHoracio Sanson
gopls: add go_gopls_init_options
2021-02-06Merge pull request #3568 from jD91mZM2/jqHoracio Sanson
Add jq linter for JSON diagnostics
2021-02-03gopls: add go_gopls_init_optionsRob Watson
2021-02-02Add command callback testjD91mZM2
2021-01-31Add linter for haskell-language-serveryen3
The patch adds a new linter for haskell-language-server (hls). hls is the integration point of haskell-ide-engine (hie) and ghcide.
2021-01-30Fix 2726 - fix terraform linter.Horacio Sanson
Instead of using `terraform fmt` for linting use `terraform validate` with json output.
2021-01-30Fix 3371 - Add terraform-ls supportHoracio Sanson
2021-01-23refactor(erlang/dialyzer): remove file placeholder from optionsPierre-Nicolas Clauss
Signed-off-by: Pierre-Nicolas Clauss <pinicarus@protonmail.com>
2021-01-23Merge remote-tracking branch 'upstream/master'Pierre-Nicolas Clauss
Signed-off-by: Pierre-Nicolas Clauss <pinicarus@protonmail.com>
2021-01-23add spectral linter for yamltatsuya
ci
2021-01-23Merge pull request #3533 from motato1/masterHoracio Sanson
Deno support for LSP and fixer
2021-01-23Merge pull request #2825 from thindil/masterHoracio Sanson
Added support for Ada Language Server
2021-01-22doc: Add documentation for DenoMohammed Chelouti
2021-01-22feat: Add Deno lsp supportMohammed Chelouti
2021-01-23Merge pull request #3551 from fenuks/bugfix-3506Horacio Sanson
Fix clang-tidy ignoring compile-commands.json
2021-01-22Merge remote-tracking branch 'upstream/master'Bartek thindil Jasicki
2021-01-22Add command callback testsNelson Yeung
2021-01-22linters/xo: fix testsCharles B Johnson
2021-01-22linters/xo: consolidate xo lintersCharles B Johnson
2021-01-22Fix clang-tidy ignoring compile_commands.jsonfenuks
2021-01-22Fix 2777 - Add IBM openapi validatorHoracio Sanson
2021-01-22Merge remote-tracking branch 'upstream/master'Bartek thindil Jasicki
2021-01-20Merge pull request #3453 from blinsay/blinsay/rust-analyzer-lspHoracio Sanson
pass lsp intialization_options to rust-analyzer
2021-01-20Merge pull request #3455 from Thau/feat/credo_config_fileHoracio Sanson
feat: Adds variable to use custom config file with Elixir Credo
2021-01-16Merge pull request #3485 from andreaconti/masterHoracio Sanson
Fix Julia Language Server Support
2021-01-15Merge remote-tracking branch 'upstream/master'Bartek thindil Jasicki
2021-01-14Add nvim floating window support (replaces #3314) (#3470)Kevin Clark
* Add nvim floating window hover support * Add configuration for float to replace preview * preview#ShowFloating: qualify local variables * Configure floating preview usecases individually Also: * Extract floating preview to its own file. * Ignore 'stay_here' option. Moving into the floating preview window seems confusing at best. * Re-use existing floating preview window if it's still up. * Flush out floating preview documentation. * Watch cursor position changes per window Floating previews open a new window, so when that window is written to, it moves briefly there at a different position than the original window. This makes repeated positions detected when positions are tracked at a s: level. Instead, we change the variable to window scoped, which only fires a message if the cursor has changed from the last position in *that window*. * g:ale_floating_preview cleanup * floating_preview: add ALEDetail tests * Fix fecs test missing runtime call * Add ALEHover floating preview tests Co-authored-by: Jan-Grimo Sobez <jan-grimo.sobez@phys.chem.ethz.ch>
2021-01-13Merge pull request #3494 from YorickPeterse/masterHoracio Sanson
Add linter for Inko
2021-01-13Merge pull request #3531 from pinicarus/custom-erlc-executableHoracio Sanson
Custom erlc executable
2020-12-23Add linter for InkoYorick Peterse
This adds a linter for Inko (https://inko-lang.org/). The linter makes use of Inko's own compiler, and a newly introduced --check flag to only check for errors; instead of also compiling source code.
2020-12-18Merge remote-tracking branch 'upstream/master'Bartek thindil Jasicki
2020-12-16Merge pull request #3403 from will/sorbetwatchmanHoracio Sanson
Add Ruby sorbet option to enable watchman
2020-12-12Fix test space bugAndrea Conti
2020-12-12Update Julia language server run commandAndrea Conti
2020-11-27Merge remote-tracking branch 'upstream/master'Bartek thindil Jasicki
2020-11-25feat: add yamlfix fixerLyz
2020-11-23refactor: Move test to the right fileGonzalo Quero