Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-10 | Move images to a GitHub issue | w0rp | |
2019-06-10 | Merge pull request #2574 from enterprisey/patch-1 | w0rp | |
In README, more efficient git clones | |||
2019-06-10 | Merge pull request #2568 from h-michael/fix-reasonml-doc | w0rp | |
Remove unnecessary asterisk from doc/ale-reasonml | |||
2019-06-09 | In README, more efficient git clones | enterprisey | |
Users don't need the entire git history to use the plugin, so don't download it | |||
2019-06-09 | Remove unnecessary asterisk from doc/ale-reasonml | Hirokazu Hata | |
2019-06-09 | Document and test reason-language-server | w0rp | |
2019-06-08 | Add support for reason-language-server | David Buchan-Swanson | |
2019-06-08 | Merge pull request #2253 from jj-kim/master | w0rp | |
Improve location list behavior on split windows of same buffer. | |||
2019-06-08 | Merge pull request #2559 from nerdrew/rust-cargo-rendered-detail | w0rp | |
show rendered cargo error in detail for clippy errors | |||
2019-06-08 | Merge pull request #2565 from Tharre/master | w0rp | |
Run xml linters on xsd and xslt files | |||
2019-06-08 | Merge pull request #2551 from laino/eslint-json | w0rp | |
Use JSON output for ESLint and fix tsserver column | |||
2019-06-08 | Merge pull request #2566 from grimmn/extend-clangtidy-options | w0rp | |
Add additional options setting for clang-tidy linter | |||
2019-06-08 | Add additional option setting for clangtidy linter | Jonathan Vander Mey | |
The existing option setting handles setting additional compile flags to pass to clang-tidy. The new option setting added here allows setting additional clang-tidy specific flags to be passed as well. Fixes #2324 | |||
2019-06-06 | Run xml linters on xsd and xslt files | Tharre | |
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-05 | Fix #2525 - Convert Windows paths in a Unix environment | w0rp | |
2019-06-04 | show rendered cargo error in detail | Andrew Lazarus | |
2019-06-04 | Make ale_lint_on_save work with b:ale_fix_on_save = 1 | w0rp | |
2019-06-04 | Merge pull request #2557 from hy2k/update-doc | w0rp | |
Change ALE integration with Deoplete in README | |||
2019-06-04 | Update README deoplete completion source section | hy2k | |
2019-06-04 | Use correct handler for 'xo' linter | Nils Kuhnhenn | |
2019-06-03 | #2542 - Improve checkstyle project configuration | w0rp | |
2019-06-03 | Fix tests on Windows | w0rp | |
2019-06-03 | Fix #1279 - Run cppcheck differently when modified | Christoph Koehler | |
cppcheck is now run without the --project option and from the buffer's directory instead when the buffer has been modified. Saving the buffer will get results by linting the project instead. | |||
2019-06-03 | Feature/add ant support (#2539) | Andrew Lee | |
Use ant files to load Java settings too. | |||
2019-06-03 | Fix #2555 - Remove highlights in lowercase, etc | w0rp | |
2019-06-03 | Update the license year | w0rp | |
2019-06-02 | Use JSON output for eslint and fix tsserver column | Nils Kuhnhenn | |
2019-06-01 | Merge pull request #2549 from m-pilia/custom-lsp-requests | w0rp | |
Add API for custom LSP requests | |||
2019-06-01 | Support custom LSP notifications | Martino Pilia | |
Allow to send custom notification mesages, that expect no response from the server. | |||
2019-05-31 | Refactor LSP custom request handling | Martino Pilia | |
2019-05-31 | Add API for custom LSP requests | Martino Pilia | |
Implement a function `ale#lsp_linter#SendRequest` that allows to send custom LSP requests to an enabled LSP linter. Resolves #2474 | |||
2019-05-30 | Fix #2544 - Completion positions are off by one | w0rp | |
2019-05-29 | Merge pull request #2529 from maxwell-k/terraform_linter | w0rp | |
Add a terraform linter | |||
2019-05-29 | #2533 - Run phpcs in the directory the file is in | w0rp | |
2019-05-29 | Merge pull request #2540 from sijad/pgformatter | w0rp | |
add pgformatter fixer | |||
2019-05-29 | Merge pull request #2543 from hsanson/fix-checkstyle-handler | w0rp | |
Fix java checkstyle handler. | |||
2019-05-28 | Fix #2438 - Print a friendly message when the clipboard is not available | w0rp | |
2019-05-28 | Fix #2535 - Automatically emit <C-x><C-o> less to prevent <C-o> issues | w0rp | |
2019-05-28 | Merge pull request #2541 from jwkvam/neovim-bufline | w0rp | |
fix neovim missing setbufline | |||
2019-05-28 | Fix java checkstyle handler. | Horacio Sanson | |
The checkstyle handler is capable of parsing the new and old output formats. Unfortunately there are some particular output messages that matched both the new and old regular expressions: [WARN] whatever:11:7: WhitespaceAround: ''if'' is not followed by whitespace. [WhitespaceAround] This caused ALE to report extra errors since the message was being matched twice, once as a warning and another (incorrect) old formatted error. This MR fixes this by stopping any parsing using the old format regexp is any errors of the new format are correcly parsed. There is no reason to expect checkstyle to output both styles in the same report. | |||
2019-05-27 | fix neovim missing setbufline | Jacques Kvam | |
2019-05-27 | add pgformatter | Sajjad Hashemian | |
2019-05-24 | Merge pull request #2524 from hsanson/2521-fix-lsp-diagnostics-buffer-match | w0rp | |
WIP Fix HandleLSPDiagnostics buffer match logic. | |||
2019-05-24 | Fix LSP tests | w0rp | |
2019-05-23 | Add a terraform linter | Keith 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-23 | Merge pull request #2520 from hsanson/fix-eclipselsp-workspace-config | w0rp | |
Fix eclipselsp workspace config | |||
2019-05-23 | Add tests for LSP responses | Horacio Sanson | |
2019-05-23 | Add exact file match test to TSServer response handler | Horacio Sanson | |
2019-05-22 | Update the README to use travis-ci.com | w0rp | |
2019-05-22 | Add fix to HandleTSServerDiagnostics function. | Horacio Sanson | |