summaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
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-08-02Split Hack out from PHP, modernizeFred Emmott
fixes #1738 - Replace previous `hh_client` usage with LSP client - Add `HHAST` linter - Split Hack from PHP: Hack is increasingly diverging from PHP: - Hack tools do not understand PHP - Most PHP tools do not handle Hack code well (including vim's syntax highightling files) - http://github.com/hhvm/vim-hack now sets filetype to `hack`
2018-07-26doc: mark `vulture` as file linteractionless
2018-07-26Add support for 'vulture' for PythonYauhen Kirylau
2018-07-25Providing cquery support for C filesjtalowell
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-22Move README.md backw0rp
2018-07-22Move GitHub files to the .github directoryw0rp
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 support for Fortran language server by @hansecBen Spiers
2018-07-19Capitalize Language Server Protocolw0rp
2018-07-19Make LSP support more prominent in the READMEw0rp
2018-07-16remark-lint without saving to diskTakashi WADA
2018-07-15Add kotlin language server support (#1725)MTDL9
* Add kotlin languageserver linter definition * Added kotlin languageserver references in docs, fix missing !! on other linters * Added Vader tests for root path detection in Kotlin Language Server
2018-07-07Merge pull request #1697 from ananace/add-puppet-languageserverw0rp
puppet: Add puppet-languageserver linter
2018-07-05vue: Add the vls language server linterAlexander Olofsson
2018-07-04puppet: Add puppet-languageserver linterAlexander Olofsson
2018-07-01add pyre lsp linter to python lintersDerek P Sifford
2018-07-01Added dartfmt fixer (#1683)Govind KP
* Added dartfmt to Fixers * Added dartfmt specific documentation
2018-06-25sh: add bash-language-server linterChristian Höltje
2018-06-20Merge pull request #1618 from colbydehart/masterw0rp
[new linter] Add mix linter for elixir
2018-06-17Merge pull request #1650 from yasuhiroki/support-cfn-python-lintw0rp
Add linter for AWS CloudFormation template file
2018-06-15Tell people that there's no cost for LSP support if they don't need itw0rp
2018-06-12Add linter for AWS CloudFormation template fileyasuhiroki
2018-06-06Add the cquery LSP #1475 #1594Ben Falconer
2018-06-04Typo: TypeSript -> TypeScriptRadhika Morabia
2018-06-03Add 'scalafmt' fixer for Scala filesJeffrey Lau
closes https://github.com/w0rp/ale/issues/1299
2018-05-30Mention g:ale_linters_explicit in the READMEv1.9.0w0rp
2018-05-30Fix #1610 - Encourage the use of ftplugin files morew0rp
2018-05-30Merge pull request #1589 from gagbo/balloon_docw0rp
Documentation : document the mouseover magic
2018-05-30Add mix linter for elixirMagnus Ottenklinger
2018-05-28Encourage people to use NeoVim 0.2.0 or above in the README.w0rp
2018-05-17Documentation : Add mention of mouseover in READMEGerry Agbobada
2018-05-08Merge pull request #1555 from BobuSumisu/nasm-linterw0rp
Added NASM assembly linter
2018-05-08#852 Update the REAME to mention %...code...%w0rp
2018-05-04Added NASM linterØyvind Ingvaldsen
Added NASM linter (for nasm filetype).
2018-05-03Tell people to install prettier-eslint-cli insteadw0rp
2018-05-02Make the features ALE supports clearer in the READMEw0rp
2018-04-28A couple of more doc fixesChris Marchesi
* Update section 5.viii in the README with ALEJobStarted and re-format the example. * Add an extra line after documentation update to ensure consistency with the rest of the doc.
2018-04-24#1428 Show multiline hover messages, and document the new commandw0rp
2018-04-22Add support for finding references using LSP servers or tsserverw0rp
2018-04-22Merge pull request #1517 from kfly8/perltidy-fixerw0rp
Added perltidy fixer
2018-04-22Close #1162 - Implement completion support with LSP serversw0rp
2018-04-21add perltidy fixerKenta, Kobayashi
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-09Add support for the java PMD linterJohannes Wienke
2018-04-06Added support for Python black fixer (#1451)Jack Evans
2018-04-05Integration of qmlfmt linting tool (#1462)P M
* Add first qmlfmt support * Add GetCommand() function - pass --error/-e option * Add handle unittest - fix pattern regex - store col as integer * Update docs * Add command callback unit test
2018-04-05Add fsc linter for Scala (#1452)Nils Leuzinger
* Add fsc as a Scala linter * Pull reused code into `autoload/ale/` directory * Include fsc into the README * Add unit test for testing the scala handler * Add unit test for scala's fsc linter * Rename scala unit tests for clarity * Fix typo in README * Fix typos in doc/ale.txt * Fix author headline * Put methods for fsc commands back into fsc.vim * Move command_callback tests to correct location * Rewrite handler test so it actually tests handler * Clarify description of test in test_scala_handler