Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-10-01 | prolog/swipl: add blank line after call | D. Ben Knoble | |
Though I do not see this specified or followed anywhere else | |||
2020-10-01 | prolog/swipl: add test for new format | D. Ben Knoble | |
2020-10-01 | prolog/swipl: address linter feedback | D. Ben Knoble | |
This actually caught a bug where I forgot to rename the function | |||
2020-10-01 | prolog/swipl: update error format for new version | D. Ben Knoble | |
A recent(?) update to swipl changed the error format from Warning: some.pl:2: Singleton variables: [Y] to Warning: some.pl:2: Warning: Singleton variables: [Y] The old error handler doesn't report the correct line numbers and messages on the old format. I've chosen to add a function that covers the second case and detect it, rather than rewrite the current function. This way, both versions should be able to live together. --- Example file that demonstrates the issue (some.pl above): ``` % vim: ft=prolog ii(X, Y) :- X. ``` --- | |||
2020-09-09 | Bump the ALE version to 3.0.0v3.0.0 | w0rp | |
2020-09-09 | Close #2522 - Check pylint on the fly | w0rp | |
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-09 | Add tests for covering the coming Vint version | w0rp | |
2020-09-09 | Merge pull request #3108 from timbedard/vint-add-stdin | w0rp | |
Add stdin option for supported vint versions | |||
2020-09-08 | Close #3003 - Show ignored linters in :ALEInfo | w0rp | |
2020-09-08 | Close #3333 - Add an ALECompletePost event | w0rp | |
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-07 | Fix a completion error | w0rp | |
2020-09-07 | Merge pull request #3337 from sodapopcan/patch-1 | Horacio Sanson | |
Fix typo | |||
2020-09-07 | Merge pull request #3334 from remi6397/bugfix/asciidoc-languagetool-typo | Horacio Sanson | |
Fix asciidoc languagetool integration | |||
2020-09-07 | Fix typo | Andrew Haust | |
2020-09-06 | Close #3268 - Implement :ALEImport | w0rp | |
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-05 | Fix #3183 - Escape filename characters from LSP/tsserver | w0rp | |
2020-09-05 | Clean up embertemplatelint code | w0rp | |
Alias ember-template-lint to embertemplatelint so users can use either string to enable the linter. | |||
2020-09-04 | Fix asciidoc languagetool integration | Jeremiasz Nelz | |
2020-09-04 | Fix #3322 - Apply rename changes correctly | w0rp | |
2020-08-31 | feat(template-lint): Read from stdin (#2622) | Cyrille David | |
* ember-template-lint: Lint from stdin * This feature has recently been implemented in ember-template-lint. * Refactor ember-template-lint executable * Fallback on a temporary file for old template-lint Co-authored-by: w0rp <w0rp@users.noreply.github.com> | |||
2020-08-31 | Fix flake8 cd logic for invalid options | w0rp | |
2020-08-31 | Add tests for \r removal | w0rp | |
2020-08-31 | Merge pull request #2858 from kalekseev/patch-flake8 | w0rp | |
Provide configuration option to run flake8 from project root. | |||
2020-08-31 | Merge pull request #3078 from jgehrig/jg-issue2958 | w0rp | |
Issue 2958: Addtional ^M characters on Windows | |||
2020-08-30 | Run 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 | Merge pull request #3194 from maxwell-k/vint | w0rp | |
vim/vint: show policy name | |||
2020-08-29 | #2107 - Recommend <C-c> instead, which avoids autocmd functions | w0rp | |
2020-08-29 | #2107 - Document completion fallbacks and insert-completion trick | w0rp | |
2020-08-29 | Close #3205 - Avoid inserting completions by default | w0rp | |
2020-08-29 | Fix #2971 - Disable automatic completion while 'paste' is active | w0rp | |
2020-08-29 | Fix retrying on some test failures | w0rp | |
2020-08-29 | Fix psalm options. Retry on some test failures | w0rp | |
2020-08-29 | Fix #3247 - Use --always-make for make -n by default | w0rp | |
2020-08-29 | Add a missing `augroup END` line | w0rp | |
2020-08-29 | Merge pull request #3327 from Kimplul/master | w0rp | |
Improved macro handling in gcc | |||
2020-08-29 | Improved macro handling in gcc | Kimplul | |
2020-08-29 | typo | w0rp | |
2020-08-29 | #3319 - Try to modify buffers later for ALEFix | w0rp | |
2020-08-28 | Close #3325 - Apply new formatting where possible | w0rp | |
2020-08-28 | #3325 - ale#path#BufferCdString now generates %s:h | w0rp | |
2020-08-28 | Close #3285 - lint_file is now dynamic | w0rp | |
`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-28 | Close #3309 - Add b:ale_lint_delay | w0rp | |
2020-08-28 | Fix #3323 - Set default for g:ale_filename_mappings | w0rp | |
2020-08-28 | Add sql-lint to supported tools | w0rp | |
2020-08-28 | Merge pull request #2988 from joereynolds/master | w0rp | |
Add sql-lint as linter | |||
2020-08-28 | #3324 - Enable rls by default | w0rp | |
2020-08-28 | Set prettier working directory to where .prettierignore is (#3101) | Sorin Iclanzan | |
Prettier does not use `.prettierignore` unless the current directory is the root where the `.prettierignore` file resides. * Update Prettier tests * Look for prettierignore to determine project root | |||
2020-08-27 | Fix #3319 - Force modifications to buffers | w0rp | |
2020-08-27 | Fix #3318 - Escape macros when parsing C flags | w0rp | |
2020-08-27 | Fix C flag parsing and tests on Windows | w0rp | |