summaryrefslogtreecommitdiff
path: root/autoload
AgeCommit message (Collapse)Author
2018-02-25New 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 APIw0rp
2018-02-18Fix #1336 - Print a friendly message when using invalid function names for ↵w0rp
fixers
2018-02-10functional pony linterKevin Tindall
2018-02-04Fix #1330 - Find isort configs better by changing the working directoryw0rp
2018-02-01Add prettier fixer support to vueblyoa
2018-01-29Merge pull request #1322 from datanoise/masterw0rp
fixed rust errors parsing
2018-01-28#1303 jq isn't a Node programw0rp
2018-01-27fixed rust errors parsingKent Sibilev
use correct column values instead of absolute byte positions
2018-01-26Merge pull request #1311 from butlerx/update/prettier-mdw0rp
add prettier support for graphql
2018-01-25fixjson: Add support for local installationrhysd
2018-01-24add prettier support for graphqlbutlerx
2018-01-24Support fixing JSON files with fixjsonrhysd
2018-01-24Add jq as a JSON fixerRafael Rinaldi
2018-01-19Merge pull request #1287 from rhysd/prettier-markdownw0rp
Enable prettier to format markdown files
2018-01-19Fix the didSave tests so they work in NeoVim 0.1.7, and do not send the ↵w0rp
message for tsserver
2018-01-19Send 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-17Fix #1298 - Escape commands for PowerShellw0rp
2018-01-15Enable prettier to format markdown filesrhysd
2018-01-07Go: Add gotype support (#1099)Jelte Fennema
2018-01-07Show more ALE variables in ALEInfow0rp
2017-12-27Don't use temporary file for rustfmt fixerBjö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-26Fix #1251 - Handle an empty list in the line callback when NeoVim crashesw0rp
2017-12-20Fix #1115 - Add support for wrapping all commands with an optionw0rp
2017-12-19Fix the mscs tests on Windows, and use the improved Simplify for all tests ↵v1.7.0w0rp
instead.
2017-12-19Allow the cursor messages to be disabled while Vim is runningw0rp
2017-12-19Fix #1228 - Reset the cursor if echoing a message moves itw0rp
2017-12-18Missing warning level 'suggestion' for valeJohannes Wienke
Vale can also, optionally, raise suggestions. These weren't covered yet.
2017-12-18Fix #1210 - Fix a Windows path issue which broke TSLintw0rp
2017-12-18Remove some now redundant echo codew0rp
2017-12-18#1212 Fix some echo cursor flashing by only echoing once all linters are ↵w0rp
finished.
2017-12-18Merge pull request #1232 from languitar/vale-jsonw0rp
Use JSON output with vale
2017-12-18Add support for Vritual Env folder called venvDaniel Parker
2017-12-17Use JSON output with valeJohannes 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-17Merge pull request #1220 from languitar/linter-alexw0rp
Add a linter for alex
2017-12-17Look for mypy.ini to find Python project roots toow0rp
2017-12-17Fix a typow0rp
2017-12-17Merge pull request #1203 from Carpetsmoker/autocmd-startw0rp
Add ALEStartLint autocmd
2017-12-13Add a linter for alexJohannes Wienke
https://github.com/wooorm/alex Enabled for text-like file formats and documented in README and doc.
2017-12-10Run before lint cycle, rename autocmdsMartin Tournoij
2017-12-09add google-java-format fixerbutlerx
2017-12-08goimports fixer doesn't work for vendored librariesMartin 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-07Fix #1205 Do not add line highlights if the groups do not existw0rp
2017-12-07Merge pull request #1174 from ↵w0rp
eborden/eborden/add-brittany-for-haskell-formatting Add brittany for Haskell formatting
2017-12-07Add ALEStartLint autocmdMartin 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-05added importjs fixerJeff Willette
- added tests for fixer functions - added docs
2017-12-02Fix #1186 - Disable checking code with perl by defaultw0rp
2017-12-02Merge pull request #1188 from ejsexton82/masterw0rp
Fixed Command String for phpcbf Fixer
2017-12-01Make toggling work when pattern options are enabledw0rp
2017-12-01Fixed command string for phpcbf fixerE.J. Sexton