summaryrefslogtreecommitdiff
path: root/doc/ale.txt
AgeCommit message (Collapse)Author
2019-06-20Fix small doc typoHoracio Sanson
2019-06-19Update docs on default after recent changeslbonn
`g:ale_lint_on_insert_leave` default has been changed from 0 to 1 in 168768b32667b244e0afdc8da851d91ab95d6e2f
2019-06-17Add support for purescript language server (#2572)Drew Olson
* Add support for purescript language server * Update naming * Add purescript language server tests
2019-06-13Merge pull request #2563 from dcyriller/fixer-prettier-glimmerw0rp
prettier: Support experimental languages (Handlebars)
2019-06-10Lint on InsertLeave, not in insert mode by defaultw0rp
b:ale_lint_on_insert_leave is now supported as tests need it. These defaults are saner and cause fewer issues for users by default.
2019-06-10Merge pull request #2567 from theevocater/add_reorder_python_importsw0rp
Add support for reorder-python-imports fixer
2019-06-10Make rmarkdown files work with styler and lintr (#2564)Thibault Vatter
* add R markdown as filetype for styler * Add rmarkdown as an alias for R
2019-06-08Add support for reorder-python-imports fixerJake Kaufman
isort is great, but I've come to prefer reorder-python-imports. The tool has a focus on smaller diffs than isort. reorder-python-imports is also a little smarter than isort which is nice.
2019-06-09Document and test reason-language-serverw0rp
2019-06-06Run xml linters on xsd and xslt filesTharre
Both xsd and xslt are by definition written in XML, and thus the same linter(s) can be run to check them for well-formedness.
2019-06-06prettier: Support experimental languagesCyrille David
Such as handlebars
2019-06-01Support custom LSP notificationsMartino Pilia
Allow to send custom notification mesages, that expect no response from the server.
2019-05-31Refactor LSP custom request handlingMartino Pilia
2019-05-31Add API for custom LSP requestsMartino Pilia
Implement a function `ale#lsp_linter#SendRequest` that allows to send custom LSP requests to an enabled LSP linter. Resolves #2474
2019-05-29Merge pull request #2529 from maxwell-k/terraform_linterw0rp
Add a terraform linter
2019-05-27add pgformatterSajjad Hashemian
2019-05-23Add a terraform linterKeith Maxwell
This linter uses the check functionality built into terraform. ALE already has a fixer using `terraform fmt` but this doesn't provide error messages. ALE already has a linter using `tflint` but this requires an extra application to be installed. For example this linter will give a warning that ! is an illegal character in the line below: variable "example" !{} This linter runs the buffer through the command below and parses the output: terraform fmt -no-color -check=true - This commit includes a basic implementation, documentation and tests. The only option is to control which executable is run. Tested with: $ terraform -version Terraform v0.11.13
2019-05-21Revert "Fix #2492 - Remove all Deoplete support for now"w0rp
This reverts commit 975cc7af8fbabe234a220c84e56b7ff719d8d959.
2019-05-19Add support for Erlang dialyzer (#2509)Antoine Gagné
* Add support for Erlang dialyzer * Add an option to specify rebar3 profile In doing so, the use of the `**` wildcard becomes unnecessary.
2019-05-17Close #2285 - Add a function for use with omnifuncw0rp
2019-05-16Fix #2492 - Remove all Deoplete support for noww0rp
2019-05-13[linter] Add LSP support for LaTeX via texlabrliang
2019-05-11Support b:ale_completion_enabled for disabling it for some buffersw0rp
2019-05-11Make it less likely people will do the wrong thingw0rp
Make it very clear in every single place that the setting for ALE's own completion implementation is mentioned that you should not enable it if you want to use ALE as a completion source for other plugins like Deoplete.
2019-05-10#2403 - Make ale_disable_lsp apply consistently, and document it betterw0rp
2019-05-09Fix typos in documentationSh3Rm4n
2019-05-07Add fixer for OCaml ocp-indent (#2436)Kanenobu Mitsuru
2019-05-01Merge pull request #2437 from robertjlooby/add-floskellw0rp
Add floskell for Haskell formatting
2019-04-29Merge pull request #2448 from reedriley/masterw0rp
Add support for Vim's tagstack to ALEGoToDefinition
2019-04-29Include plugin description in local help lineCaleb Maclennan
The recommended format for _vim's internal help files_ is "<tag> <for vim version> <last change>", (see `:help help-writing` but this format is not parsed the same way for plugins. For plugins the recommended format includes a description of the plugin such as "<tag> <description>". See `:help write-local-help` for the different template.
2019-04-23Close #1753 - Implement minimum viable integration with Deopletew0rp
2019-04-23Add a fixer for r based on the styler package (#2401)Thibault Vatter
* Add styler as a new fixer for R files * Add to the list of supported tools * Add documentation
2019-04-19Add support for Vim's tagstack to ALEGoToDefinitionReed Riley
fixes 1236
2019-04-16Fix #1930 - Finish ale_fix_on_save_ignorew0rp
* Implementation had a bug * Documentation added * Tests added
2019-04-14Add floskell for Haskell formattingRob Looby
2019-04-13Add support for latexindent (#2387)Riley Martine
2019-04-13Merge pull request #2121 from hsanson/1996-add-support-for-eclipse-jdt-lsw0rp
WIP Fix 1996 - Add eclipse LSP support.
2019-04-13Merge pull request #2394 from harttle/masterw0rp
feat: fecs support for js/html/css lint and format
2019-04-13Linter for powershell syntax errors (#2413)Jesse Harris
* Linter for powershell syntax errors
2019-04-11feat: fecs support for js/html/css lint and formatharttle
`fecs` is a lint tool for HTML/CSS/JavaScript, see http://fecs.baidu.com for more options.
2019-04-11Fix 1996 - Add eclipse LSP support.Horacio Sanson
2019-04-10Add a linter for clojure using clj-kondo (#2377)Masashi Iizuka
2019-04-10Close #2179 - Add support for goplsw0rp
2019-04-10Adding new linter "cookstyle" for chef recipes (Issue #1187) (#2362)Raphael Hoegger
2019-04-08[doc] Add swift support documentation (#2426)Dan Loman
* [doc] Add swift support documentation * [doc] Add swift bullets in main help file * [doc] Add to supported languages and tools txt file as well * Ensure same name styling for help/readme files
2019-04-07Document ale#Hasv2.4.0w0rp
2019-04-02Sort the documented optionsw0rp
2019-03-30Add g:ale_disable_lsp and b:ale_disable_lsp to disable linters powered by LSPrhysd
2019-03-29Fix the table of contentsw0rp
2019-03-29PSScriptAnalyzer (#2370)Jesse Harris
* Added psscriptanalyzer * Added exclusions and documentation * Added PSScriptAnalyzer handler test