summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2020-11-21Close #1466 - Add GVIM refactor menu supportw0rp
Code actions and ALERename now appear in the right click context menu for GVim by default.
2020-11-14Update documentation for code actions and renamew0rp
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-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-01Fix grammatical error in docisaif
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-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 typoAndrew Haust
2020-09-06Close #3268 - Implement :ALEImportw0rp
A new command, `:ALEImport`, has been added, which lets you import words at your cursor if a completion provider can provide a completion for that word which includes some additional text changes.
2020-09-05Clean up embertemplatelint codew0rp
Alias ember-template-lint to embertemplatelint so users can use either string to enable the linter.
2020-08-30Run flake8 from project root by default.Konstantin Alekseev
Option `per-file-ignores` was introduced in flake8 version 3.7.0. It allows to ignore specific errors in specific files using glob syntax. For example `per-file-ignores = src/generated/*.py:F401` will ignore `F401` error in all python files in `src/generated`. Thus ale has to run flake8 from project root where .flake8 config is placed otherwise glob won't match linted file.
2020-08-29#2107 - Recommend <C-c> instead, which avoids autocmd functionsw0rp
2020-08-29#2107 - Document completion fallbacks and insert-completion trickw0rp
2020-08-29Fix #2971 - Disable automatic completion while 'paste' is activew0rp
2020-08-29Fix psalm options. Retry on some test failuresw0rp
2020-08-29Fix #3247 - Use --always-make for make -n by defaultw0rp
2020-08-28Close #3285 - lint_file is now dynamicw0rp
`lint_file` can now be computed dynamically with a callback function, which can return a deferred result, as per `ale#command#Run`. This allows linters to dynamically switch between checking files on disk, or checking code on the fly. Some tests have been fixed on Windows.
2020-08-28Close #3309 - Add b:ale_lint_delayw0rp
2020-08-28Add sql-lint to supported toolsw0rp
2020-08-28#3324 - Enable rls by defaultw0rp
2020-08-27Mention --fast, and document running Windows tests locallyw0rp
2020-08-27Merge pull request #3310 from pbrisbin/masterw0rp
Add dhall-format as a Fixer
2020-08-27Fix a typow0rp
2020-08-27#3314 - Tell people how to make new plug mappingsw0rp
2020-08-25Add dhall-format as a Fixerpatrick brisbin
https://github.com/dhall-lang/dhall-lang
2020-08-24#2556 - Support modifiers for formatted filenamesw0rp
2020-08-23Close #2556 - Support filename mappingw0rp
ALE now supports mapping files between different systems for running linters and fixers with Docker, in virtual machines, in servers, etc.
2020-08-20#3299 Merge gcc and clang into a cc linterw0rp
Users can easily be confused when they set some options for a C or C++ compiler, and another compiler is run with different options, which still reports errors. To remedy this, the existing `gcc` and `clang` linters have been replaced with a `cc` linter that will run either compiler. This is a breaking change for ALE v3.0.0.
2020-08-18Merge pull request #3229 from hsanson/3220-enable-languagetool-for-asciidocw0rp
Enable languagetool for asciidoctor files.
2020-08-18Remove features deprecated in previous versionsw0rp
2020-08-17Merge pull request #3007 from klaaspieter/swift-formatw0rp
Add Apple's swift-format as a linter
2020-08-17Merge pull request #2940 from davidsierradz/add-markdownlint-optionsw0rp
allow passing custom options to markdownlint
2020-08-13rust/cargo: add support for a custom target directoryBen Boeckel
This can avoid having to wait for ALE or ALE being blocked on other cargo actions within the same crate.
2020-08-13Merge pull request #3010 from kevinoid/ps1-powershellw0rp
Alias ps1 filetype to powershell
2020-08-13Fix #3286 - Fix duplicate tagsw0rp
2020-08-12Restore old behavior of ALEFix command for Rubocop (#3237)Nihad Abbasov
* Restore old behavior of ALEFix command for Rubocop Since RuboCop 0.60 ALEFix command stopped to fix all found offenses. This change restores the previous behavior by allowing rubocop to fix all detected offenses. * Fix tests * Allow to configure auto-correct option for Rubocop
2020-08-09#3276 - Disable make -n by default againw0rp
2020-08-09Enable C flag parsing by defaultw0rp
The options for parsing `make -n` and `compile_commands.json` flags are now enabled by default, so people can start getting better flags for their files by default. `compile_commands.json` flags are now preferred over `make -n` results, to make the options work better by default.
2020-08-09Explain how to use ALE and coc.nvim togetherw0rp
2020-08-09Close #3267 - Add a general autoimport settingw0rp
2020-08-09Merge pull request #2849 from DonnieWest/excludeTsserverWarningsw0rp
Allow the user to remove warnings from completions
2020-08-07Close #2472 - Add support for pyrightw0rp
2020-08-06#2804 Add hdl-checker to supported toolsw0rp
2020-08-06Adds hdl_checker LSP support (#2804)Andre Souto
* Added hdl_checker support * Added hdl_checker tests HDL Checker searches for files when no config file is found, which could lead to very long searches when the user is not really on a project setting
2020-08-04Use more American Englishw0rp
2020-08-04#1532 - Display hover information on CursorHoldw0rp
2020-07-31Merge pull request #3246 from lgmsantos/patch-1Horacio Sanson
Update ale-java.txt
2020-07-30TypoJosh Reichardt