Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-02-25 | New linter: Flawfinder (#1361) | Christian-Gibbons | |
* Flawfinder support added for C and C++ A minor modification to gcc handler was made to support flawfinder's single-line output format that does not have a space following the colon denoting the warning level. gcc handler still passes its Vader tests after this modification. * Documentation fixes * Revert documentation regression * Added Flawfinder to table of contents * Removed trailing whitespace * Follow ALE conventions better Added additional documentation and Vader tests | |||
2018-02-25 | #1363 Make ale#engine#IsCheckingBuffer part of the public API | w0rp | |
2018-02-18 | Fix #1336 - Print a friendly message when using invalid function names for ↵ | w0rp | |
fixers | |||
2018-02-10 | functional pony linter | Kevin Tindall | |
2018-02-04 | Fix #1330 - Find isort configs better by changing the working directory | w0rp | |
2018-02-01 | Add prettier fixer support to vue | blyoa | |
2018-01-29 | Merge pull request #1322 from datanoise/master | w0rp | |
fixed rust errors parsing | |||
2018-01-28 | #1303 jq isn't a Node program | w0rp | |
2018-01-27 | fixed rust errors parsing | Kent Sibilev | |
use correct column values instead of absolute byte positions | |||
2018-01-26 | Merge pull request #1311 from butlerx/update/prettier-md | w0rp | |
add prettier support for graphql | |||
2018-01-25 | fixjson: Add support for local installation | rhysd | |
2018-01-24 | add prettier support for graphql | butlerx | |
2018-01-24 | Support fixing JSON files with fixjson | rhysd | |
2018-01-24 | Add jq as a JSON fixer | Rafael Rinaldi | |
2018-01-19 | Merge pull request #1287 from rhysd/prettier-markdown | w0rp | |
Enable prettier to format markdown files | |||
2018-01-19 | Fix the didSave tests so they work in NeoVim 0.1.7, and do not send the ↵ | w0rp | |
message for tsserver | |||
2018-01-19 | Send didSave message to LSP-based linters (#1295) | Rafael Lerm | |
* Also send didSave to LSP linters. * Add tests for messages sent to LSP linters. | |||
2018-01-17 | Fix #1298 - Escape commands for PowerShell | w0rp | |
2018-01-15 | Enable prettier to format markdown files | rhysd | |
2018-01-07 | Go: Add gotype support (#1099) | Jelte Fennema | |
2018-01-07 | Show more ALE variables in ALEInfo | w0rp | |
2017-12-27 | Don't use temporary file for rustfmt fixer | Björn Lindström | |
rustfmt normally acts on a file in place, and applies configuration from rustfmt.toml files according to the path of the file. Using a temporary file for rustfmt breaks this functionality, so removing the '%t' from the rustfmt command. | |||
2017-12-26 | Fix #1251 - Handle an empty list in the line callback when NeoVim crashes | w0rp | |
2017-12-20 | Fix #1115 - Add support for wrapping all commands with an option | w0rp | |
2017-12-19 | Fix the mscs tests on Windows, and use the improved Simplify for all tests ↵v1.7.0 | w0rp | |
instead. | |||
2017-12-19 | Allow the cursor messages to be disabled while Vim is running | w0rp | |
2017-12-19 | Fix #1228 - Reset the cursor if echoing a message moves it | w0rp | |
2017-12-18 | Missing warning level 'suggestion' for vale | Johannes Wienke | |
Vale can also, optionally, raise suggestions. These weren't covered yet. | |||
2017-12-18 | Fix #1210 - Fix a Windows path issue which broke TSLint | w0rp | |
2017-12-18 | Remove some now redundant echo code | w0rp | |
2017-12-18 | #1212 Fix some echo cursor flashing by only echoing once all linters are ↵ | w0rp | |
finished. | |||
2017-12-18 | Merge pull request #1232 from languitar/vale-json | w0rp | |
Use JSON output with vale | |||
2017-12-18 | Add support for Vritual Env folder called venv | Daniel Parker | |
2017-12-17 | Use JSON output with vale | Johannes Wienke | |
Switches all vale instances to JSON output and provides an appropriate handler for that. Without JSON, no end_col is provided and text highlighting only catches the first character of every result. | |||
2017-12-17 | Merge pull request #1220 from languitar/linter-alex | w0rp | |
Add a linter for alex | |||
2017-12-17 | Look for mypy.ini to find Python project roots too | w0rp | |
2017-12-17 | Fix a typo | w0rp | |
2017-12-17 | Merge pull request #1203 from Carpetsmoker/autocmd-start | w0rp | |
Add ALEStartLint autocmd | |||
2017-12-13 | Add a linter for alex | Johannes Wienke | |
https://github.com/wooorm/alex Enabled for text-like file formats and documented in README and doc. | |||
2017-12-10 | Run before lint cycle, rename autocmds | Martin Tournoij | |
2017-12-09 | add google-java-format fixer | butlerx | |
2017-12-08 | goimports fixer doesn't work for vendored libraries | Martin Tournoij | |
In Go you can "vendor" packages by putting them in the `vendor/` directory for a project. Adding the `-srcdir` argument makes `goimports` pick up these packages, in addition to what you have in GOPATH. Without this, `goimports` is not very useful, since most projects vendor their packages. | |||
2017-12-07 | Fix #1205 Do not add line highlights if the groups do not exist | w0rp | |
2017-12-07 | Merge pull request #1174 from ↵ | w0rp | |
eborden/eborden/add-brittany-for-haskell-formatting Add brittany for Haskell formatting | |||
2017-12-07 | Add ALEStartLint autocmd | Martin Tournoij | |
This grew out of my work in #1193; to ensure the statusline was being updated I had to add: fun! s:redraw(timer) redrawstatus endfun augroup ALEProgress autocmd! autocmd BufWritePost * call timer_start(100, function('s:redraw')) autocmd User ALELint redrawstatus augroup end Which kind of works, but is ugly. With this, I can replace the `BufWritePost` with: autocmd User ALEStartLint redrawstatus Which is much better, IMHO. Actually, this patch actually replaces adding a function, since you can do: augroup ALEProgress autocmd! autocmd User ALEStartLint hi Statusline ctermfg=darkgrey autocmd User ALELint hi Statusline ctermfg=NONE augroup end or: let s:ale_running = 0 let l:stl .= '%{s:ale_running ? "[linting]" : ""}' augroup ALEProgress autocmd! autocmd User ALEStartLint let s:ale_running = 1 | redrawstatus autocmd User ALELint let s:ale_running = 0 | redrawstatus augroup end Both seem to work very well in my testing. No need to `ale#Statusline#IsRunning()` anymore, I think? | |||
2017-12-05 | added importjs fixer | Jeff Willette | |
- added tests for fixer functions - added docs | |||
2017-12-02 | Fix #1186 - Disable checking code with perl by default | w0rp | |
2017-12-02 | Merge pull request #1188 from ejsexton82/master | w0rp | |
Fixed Command String for phpcbf Fixer | |||
2017-12-01 | Make toggling work when pattern options are enabled | w0rp | |
2017-12-01 | Fixed command string for phpcbf fixer | E.J. Sexton | |