summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-11-17Look for node packages in .yarn/sdks as wellNathan Herald
2020-11-14Update documentation for code actions and renamew0rp
2020-11-14cmp forwards, and reverse the code actionsw0rp
2020-11-14Support for LSP/tsserver Code Actions (#3437)Dalius Dobravolskas
* Added tsserver and LSP code action support. * tsserver refactors support added. * Handling special case when new text is added after new line symbol. * ale#code_action#ApplyChanges simplified. * Initial attempt on LSP Code Actions. * workspace/executeCommand added. * Some null checks added. * Add last column to LSP Code Action message. * Pass diagnostics to LSP code action. Previously ApplyChanges code was applied from top-to-bottom that required extra parameters to track progress and there was bug. I have changed code to bottom-to-top approach as that does not require those extra parameters and solved the bug. Tested with typescript-language-server and it is working.
2020-11-05Merge pull request #3427 from lifecrisis/sh-buffer-varsHoracio Sanson
Check for Vim's shell type buffer variables before falling back to the file type
2020-11-02Move the test for buffer-local variablesJason Franklin
The "ale#handlers#sh#GetShellType()" function currently falls back to the file type without checking for buffer-local variables first. This causes the function to return "sh" even when a script is known by Vim to be a script of a more specific type (e.g., "bash"). The "ale#handlers#shellcheck#GetDialectArgument()" function then erroneously uses this type even though a more fitting type should be used instead. Files without a "#!" line will be of type "sh" even though they may have a ".bash" suffix. This commit fixes the problem by checking for buffer-local shell type variables (set by Vim) before falling back to the file type.
2020-11-02Use the proper term for the "#!" lineJason Franklin
2020-11-02Remove a noise commentJason Franklin
2020-10-28test(erlang/erlc): simplify matchespinicarus
2020-10-28test(erlang/erlc): make quotes optional in matchespinicarus
2020-10-28feat(erlang/erlc): add option for custom executablepinicarus
2020-10-23feat: add autoimport fixerLyz
2020-10-23Add ormolu fixer.David Wood
This commit adds a fixer for the Haskell language, ormolu (https://github.com/tweag/ormolu). Signed-off-by: David Wood <david@davidtw.co>
2020-10-20Add Ruby sorbet option to enable watchmanWill Leinweber
2020-10-19add sbt as a suggested filetype for scalafmt fixerStephenWithPH
2020-10-15Make the two nearly identical Swift tools easier to distinguishw0rp
2020-10-15#3332 Implement :ALERename! for ignoring errorsw0rp
:ALERename! now ignores errors for files that cannot be modified, and modifies all other files.
2020-10-15Fix sorting of supported toolsw0rp
2020-10-15Update FindProjectRootIni with poetry.lock and pyproject.tomlecly
2020-10-08update testsD. Ben Knoble
2020-10-08dafny: include correct filename in lint resultsD. Ben Knoble
Results can come from included files, not just the current buffer.
2020-10-03Use stdin/stdout to communicate with gofmtAndrey Popp
2020-10-02Fix typo in ale-python.txtrgossiaux
2020-10-02Merge pull request #3374 from fenuks/maven_helperHoracio Sanson
Use maven wrapper if available
2020-10-02Add tests for maven.vim filefenuks
2020-10-01Merge pull request #3375 from isaif/fix-docHoracio Sanson
Fix grammatical error in doc
2020-10-01Fix grammatical error in docisaif
2020-09-30Add maven helper file; use maven wrapper if available instead of global ↵fenuks
'mvn' executable
2020-09-28Merge pull request #3367 from bratekarate/update-bibcleanHoracio Sanson
bibclean: update matchlist reges for bibclean > v2.11.4
2020-09-26fix lint, fix variable semantics and update testsbratekarate
2020-09-26Merge pull request #3284 from resong/bug/duplicateTagHoracio Sanson
Update ale_ruby_rubocop_auto_correct_all tag
2020-09-26bibclean: update matchlist reges for bibclean > v2.11.4bratekarate
2020-09-25fix(ale_linters/phpcs): add support for multiline error messagesMarcus Zanona
2020-09-18Improves fixer performance for large buffersŁukasz Woźniak
2020-09-17fix: test: mkdir should create if it doesn't existArnold Chand
2020-09-17fix: testsArnold Chand
2020-09-17feat: add intelephense support for phpArnold Chand
2020-09-14Collapse spaces and lines in the completion menu.Raphael Nepomuceno
2020-09-14Fix wording in Rust docArthur Arnold
2020-09-09Bump the ALE version to 3.0.0v3.0.0w0rp
2020-09-09Close #2522 - Check pylint on the flyw0rp
Newer versions of pylint will now check your code as you type. Older versions will still only check the file on disk. Co-authored-by: Oliver Wiegers <oliver.wiegers@gmail.com>
2020-09-09Add tests for covering the coming Vint versionw0rp
2020-09-09Merge pull request #3108 from timbedard/vint-add-stdinw0rp
Add stdin option for supported vint versions
2020-09-09Remove unnecessary length check.Christian Keil
2020-09-09Fix format linting error.Christian Keil
2020-09-09Fix handling of ranges at file end.Christian Keil
2020-09-08Close #3003 - Show ignored linters in :ALEInfow0rp
2020-09-08Close #3333 - Add an ALECompletePost eventw0rp
Add an `ALECompletePost` event along with everything needed to make it useful for its primary purpose: fixing code after inserting completions. * `ALEFix` can now be called with a bang (`!`) to suppress errors. * A new `ALELintStop` command lets you stop linting, and start it later.
2020-09-07Fix a completion errorw0rp
2020-09-07Merge pull request #3337 from sodapopcan/patch-1Horacio Sanson
Fix typo