Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-03-09 | Remove more uses of command_callback and executable_callback | w0rp | |
2019-03-09 | Update documentation for languagetool | w0rp | |
2019-03-09 | linter/markdown: adds support for languatool (#2155) | Vincent Dahmen | |
2019-03-08 | Merge pull request #2327 from akshit-sharma/master | w0rp | |
clang-format supported with nvcc (cuda files) | |||
2019-03-08 | Fix #2326 - ALEComplete no longer replaces completeopt | w0rp | |
2019-03-08 | Merge pull request #2325 from rustic-games/rust-spans | w0rp | |
set correct Rust span end column | |||
2019-03-07 | Fix #2330 - Do not use getcurpos() to avoid changing curswant | w0rp | |
2019-03-06 | Merge pull request #2305 from campbellr/master | w0rp | |
javac: Don't assume src/main/java always exists | |||
2019-03-05 | #2132 - Document ale#command#Run | w0rp | |
2019-03-05 | Add lsp_config support for rls (#2332) | Nathan Henrie | |
* Add lsp_config for rls * Add working config example and test | |||
2019-03-03 | javac: Don't assume src/main/java always exists | Ryan Campbell | |
Some projects I have only have src/test/java (no /src/main/java), which seemed to break some incorrect assumptions the linter had. | |||
2019-03-02 | fixed mismatched ToC and heading | akshit-sharma | |
2019-03-02 | clang-format supported with nvcc (cuda files) | akshit-sharma | |
2019-03-02 | set correct Rust span end column | Jean Mertz | |
The Rust compiler returns the first column that is _not_ part of the current span as `column_end`, while Ale expects `end_col` to signify the last column of the span. | |||
2019-02-27 | #2132 - Support deferred execution for LSP executables, commands, and addresses | w0rp | |
2019-02-26 | Skip the command#Run test for fixers on Windows | w0rp | |
2019-02-26 | #2132 - Support deferred fixers | w0rp | |
2019-02-26 | #2132 - Set up fixers for deferred support | w0rp | |
2019-02-22 | Revert "#2132 Change (buffer, lines) fixer functions to (buffer, done, lines)" | w0rp | |
This reverts commit f1ed654ca5318de5a24b37d882e55e04e4e566c8. | |||
2019-02-22 | #2132 - Replace all uses of foo_callback with foo | w0rp | |
2019-02-22 | #2132 - Implement project_root as a replacement for project_root_callback | w0rp | |
2019-02-22 | #2132 - Make most foo_callback options work as foo | w0rp | |
2019-02-21 | #2132 - Implement deferred command handling for linters | w0rp | |
2019-02-21 | Fix #2300 - Handle more URIs per RFC 3986 | w0rp | |
2019-02-20 | Merge pull request #2303 from kevinoid/bandit-use-config | w0rp | |
python/bandit: Use .bandit configuration file | |||
2019-02-20 | Merge pull request #2302 from kevinoid/pylint-cd-proj-root | w0rp | |
python/pylint: Change directory to project root | |||
2019-02-20 | Merge pull request #2307 from lukas-reineke/clear-virtualtext-on-disable | w0rp | |
Clear the virtualtext on disable | |||
2019-02-20 | Clear the virtualtext on disable | Lukas Reineke | |
2019-02-18 | Merge pull request #2304 from mandreyel/patch-1 | w0rp | |
Fix typo in ale.txt | |||
2019-02-18 | Fix typo in ale.txt | mandreyel | |
2019-02-17 | python/bandit: Use .bandit configuration file | Kevin Locke | |
Bandit automatically [uses any .bandit file] within the directories on which it is invoked. Since ALE invokes bandit on stdin, it does not load a .bandit file automatically. Add support for automatically finding a .bandit file and passing it to bandit via the --ini option along with a variable to disable this behavior if desired. Note: This is useful for the skips and tests configuration options, but not exclude which would require invoking bandit using a file name, which may or may not be a good trade-off. [uses any .bandit file]: https://github.com/PyCQA/bandit/blob/1.5.1/bandit/cli/main.py#L70-L73 Signed-off-by: Kevin Locke <kevin@kevinlocke.name> | |||
2019-02-17 | python/pylint: Change directory to project root | Kevin Locke | |
Pylint only [checks for pylintrc] (and .pylintrc) files in the packages aboves its current directory before falling back to user and global pylintrc. For projects with a src dir, running pylint from the directory containing the file will not use the project pylintrc. Adopt the convention used by many other Python linters of running from the project root, which solves this issue. Add pylintrc and .pylintrc to FindProjectRoot. Update docs. [checks for pylintrc]: https://github.com/PyCQA/pylint/blob/pylint-2.2.2/pylint/config.py#L106 Signed-off-by: Kevin Locke <kevin@kevinlocke.name> | |||
2019-02-15 | Try to get tests to pass on Windows again | w0rp | |
2019-02-15 | Fix #2299 - Make tsserver run again | w0rp | |
2019-02-15 | #2295 Send an empty object for the initialized notification, per the spec | w0rp | |
2019-02-15 | Fix #2295 - Respond to initialize with an initialized message | w0rp | |
2019-02-15 | Fix #2294 - Fix some syntax that broke LSP | w0rp | |
2019-02-14 | Simplify code for marking linters as active | w0rp | |
2019-02-13 | Fix #2293 - Update linter option documentation | w0rp | |
* The README now points to a valid helptag for linter options. * The now very, very large part of the table of contents for linter and fixer options has been moved into a section so the initial table is smaller. * Special linter or fixer options now lie beneath the general linter or fixer options. | |||
2019-02-13 | Remove ProcessChain code we do not need now | w0rp | |
2019-02-13 | Make it easier to remove command_chain support later | w0rp | |
2019-02-13 | #2132 Use an on-init callback for all LSP logic | w0rp | |
2019-02-13 | Better wording | w0rp | |
2019-02-13 | Explain what linting is in the first sentence | w0rp | |
2019-02-12 | Merge pull request #2291 from kevinoid/pylama-no-temp | w0rp | |
pylama: Use %s instead of %t | |||
2019-02-12 | #2132 - Implement deferred executable string handling for linters | w0rp | |
2019-02-12 | pylama: Use %s instead of %t | Kevin Locke | |
Although using %t to lint changes was desirable, many pylama checks use surrounding paths and file contents (e.g. C0103 module name, E0402 relative import beyond top, etc.) The more such errors I find during testing, the less %t seems like a good idea. Switch to %s. Also set `lint_file` to 1 and mark Pylama as a file linter in the docs. Signed-off-by: Kevin Locke <kevin@kevinlocke.name> | |||
2019-02-11 | Fixers are not disabled by default | w0rp | |
2019-02-11 | Rewrite the supported tools lists in new files | w0rp | |
2019-02-11 | add project_root_callback for tsserver (#2290) | Derek Sifford | |
* add project_root_callback for tsserver * add tests for tsserver project root * Update test/command_callback/test_javascript_tsserver_command_callback.vader |