summaryrefslogtreecommitdiff
path: root/test/command_callback
AgeCommit message (Collapse)Author
2018-08-16feat: add ale_go_govet_options variabletyru
2018-08-12Merge pull request #1806 from jimenezrick/fix-rustc-linterw0rp
Fix #1684: Use the correct flag name in rustc linter
2018-08-10Fix #1684: Use the correct flag name in rustc linterRicardo Catalinas Jiménez
The rust compiler renamed the option '-Z no-trans' to '-Z no-codegen'. https://github.com/rust-lang/rust-enhanced/issues/281
2018-08-09Add C/C++ tests for cquery LSP linterkodemeister
2018-08-03Add support for yang-lspDavid Hotham
2018-08-03Fix #1781 - Fix me breaking the tsserver linterw0rp
2018-08-03Fix the Windows testsw0rp
2018-08-02Simplify the code for most linters and tests with closuresw0rp
2018-08-02Add Haskell IDE Engine (hie) support (#1735)Luxed
* Adding support for haskell-ide-engine * Work with the current directory if no stack.yaml file is found * Added Cabal file detection, updated documentation and added tests * Updated help
2018-07-29Add support for parsing compile_commands.json files for C compilersw0rp
2018-07-22Add Clangd language server support for CAndrey Melentyev
2018-07-22Merge pull request #1742 from typetetris/masterw0rp
Add cabal-ghc linter
2018-07-20Add cabal-ghc linterEric Wolf
cabal-ghc calls ghc via cabal exec and so ghc has access to packages in cabal sandboxes for example
2018-07-19Add the .fortls file necessary for tests to work (defying .gitignore)Ben Spiers
2018-07-19Add documentation and testing for fortlsBen Spiers
2018-07-16remark-lint without saving to diskTakashi WADA
2018-07-16Support remark-lint installed locallyTakashi WADA
2018-07-15Massively reduce the amount of code needed for linter testsw0rp
2018-07-06Add an AssertLinter command for testsw0rp
2018-07-02add dummy pyre binary and executableDerek P Sifford
2018-07-02add command_callback testDerek P Sifford
2018-07-01Fix #1412 - Use --stdin-filename for newer reek versionsw0rp
2018-06-27Rust Cargo linter: Improve workspace support (#1679)Dan Aloni
* Rust Cargo linter: Improve workspace support When using Cargo workspaces [1], there is a 'Cargo.toml' directory in a top level directory, listing all the crates in the project. If we are currently editing one of the crates, 'cargo build' should execute in that directory for that crate's separate `Cargo.toml`, otherwise Cargo may spend more time possibly rebuilding the entire workspace, and maybe failing on one of the other crates, instead of succeeding on the current. [1] https://doc.rust-lang.org/book/second-edition/ch14-03-cargo-workspaces.html
2018-06-25Add test_pyrex_cython_command_callback.vaderNicolas Pauss
Add common callback tests to check if executable and options are well configurable.
2018-06-23Add fixer tidy for HTMLAbin Simon
Add tests for tidy HTML fixer
2018-06-20Merge pull request #1618 from colbydehart/masterw0rp
[new linter] Add mix linter for elixir
2018-06-20Try to fix the tests on Windowsw0rp
2018-06-07WIP cd to project pathColby Dehart
2018-06-07added test for command callbackColby Dehart
2018-06-07Adapt test to also use Rscript --vanillaStefan Siegel
2018-06-06Add the cquery LSP #1475 #1594Ben Falconer
2018-06-05Allow all Python linter executables to be set to `pipenv`.Eddie Lebow
It appends ` run {linter_name}`, analogously to the Ruby linters when the executable is set to `bundle`
2018-06-04Allow linting rust tests and examples with cargoMichał Budzyński
2018-06-03Merge pull request #1623 from zoonfafer/scalafmt-fixerw0rp
Add 'scalafmt' fixer for Scala files
2018-06-02Allow flake8 executable to be set to `pipenv`.Eddie Lebow
It appends ` run flake8`, analogously to the Ruby tools when the executable is set to `bundle`
2018-06-03Add 'scalafmt' fixer for Scala filesJeffrey Lau
closes https://github.com/w0rp/ale/issues/1299
2018-05-28Remove a test for a deprecated variable that seems to trip up Travisw0rp
2018-05-28Fix #1566 - Add g:ale_python_flake8_change_directoryw0rp
2018-05-28Fix #1611 - Fix perlcritic escaping on Windowsw0rp
2018-05-25Move the sasslint handlers to one locationw0rp
2018-05-15Run sass-lint from the target's directoryBen Falconer
2018-05-04Fixed handle test for WindowsØyvind Ingvaldsen
Needed to add correct separator to test data.
2018-05-04Added NASM linterØyvind Ingvaldsen
Added NASM linter (for nasm filetype).
2018-05-01Add bundle option to mdlDavid Rodríguez
2018-04-27Close #1521 - Allow the language to be set with simple strings for LSP lintersw0rp
2018-04-26flake8: Move to the buffer's directory before running flake8 commandAndreas Kloeckner
2018-04-21Merge pull request #1511 from elebow/add-cucumber-checkerw0rp
Add `cucumber` checker for Cucumber files
2018-04-20Add cucumber checker for cucumber filesEddie Lebow
For now, it only detects undefined steps. The nearest `features` dir above the buffer file is loaded, so step definitions should be found correctly. Tested only with Cucumber for Ruby, but it should work for any cucumber that follows a substantially similar directory structure.
2018-04-17Fix #1507 - Add an option for disabling switching directories for pylintw0rp
2018-04-12Fix rust rls linter toolchain argumenteyenseo
This removes the argument if the specified toolchain is empty. As far as I can tell there is no +nighly (or similar) option [1] leading to the termination of the server. But since people needed this option and have yet to complain about it it stays the default for now. [1] https://github.com/rust-lang-nursery/rls/blob/master/src/main.rs#L87