Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-01-07 | Go: Add gotype support (#1099) | Jelte Fennema | |
2018-01-06 | Explain /usr/bin/tidy is ignored on macOS and how to install the latest tidy | rhysd | |
2018-01-02 | Merge pull request #1260 from kevinkjt2000/add-ghc-options | w0rp | |
haskell_ghc_options are now added to the ghc command | |||
2018-01-02 | Merge pull request #1252 from nthapaliya/fish-shell-linter | w0rp | |
Fish shell linter | |||
2018-01-02 | Merge branch 'add-fountain-proselint-support' | w0rp | |
2018-01-02 | Fix some bad indentation | w0rp | |
2018-01-01 | add ghc entry to the ToC | Kevin Tindall | |
2018-01-01 | haskell_ghc_options are now added to the ghc command | Kevin Tindall | |
2017-12-26 | Edit README and help | Niraj Thapaliya | |
2017-12-25 | Fix c# documentation variable typo | Yaroslav Ryabukha | |
2017-12-20 | Add Fountain with proselint info to ale.txt. Add Fountain online documentation. | Jansen Mitchell | |
2017-12-20 | Fix #1115 - Add support for wrapping all commands with an option | w0rp | |
2017-12-20 | Add support for linting git commit message files (#1233) | Nick Diego Yamane | |
2017-12-19 | Fix #1031 - Make the rust flags configurable | w0rp | |
2017-12-19 | Fix mcsc paths and escaping for Windows | w0rp | |
2017-12-19 | Fix #1226 - Update the mcsc documentation to make it clearer how to use it | w0rp | |
2017-12-18 | Make alex a file linter | Johannes Wienke | |
alex does not find its configuration file when using temporary files for input. | |||
2017-12-18 | Indicate that 4.2.0 is no longer strictly required for prettier-eslint, and ↵ | w0rp | |
add links for prettier-eslint and prettier-standard | |||
2017-12-18 | Sort the list of supported tools and add vale to more languages | w0rp | |
2017-12-18 | Update docs | Daniel Parker | |
2017-12-17 | Merge pull request #1220 from languitar/linter-alex | w0rp | |
Add a linter for alex | |||
2017-12-17 | Clean up some doc formatting | w0rp | |
2017-12-17 | Fix some right margin alignment | w0rp | |
2017-12-17 | Merge pull request #1203 from Carpetsmoker/autocmd-start | w0rp | |
Add ALEStartLint autocmd | |||
2017-12-17 | Update ale.txt | w0rp | |
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-07 | Merge pull request #1174 from ↵ | w0rp | |
eborden/eborden/add-brittany-for-haskell-formatting Add brittany for Haskell formatting | |||
2017-12-07 | Update ale.txt | w0rp | |
2017-12-07 | Merge pull request #1192 from fvictorio/add-solhint-support | w0rp | |
Add solhint support | |||
2017-12-07 | Fix #1202 - Do not use --all-targets by default, because it doesn't work ↵ | w0rp | |
some of the time. | |||
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 | Update doc/ale.txt to include brittany. | Evan Rutledge Borden | |
2017-12-04 | Update documentation | Franco Victorio | |
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 | Revert "Fix #1186 - Use -w by default for Perl, which does not execute code" | w0rp | |
This reverts commit f5fc746d00a8b8e0aaac1904ce97ad7eb52e1b24. | |||
2017-12-02 | Fix #1186 - Use -w by default for Perl, which does not execute code | w0rp | |
2017-12-01 | Add glslls (#1179) | Sven-Hendrik Haase | |
* Add glslls-based LSP linter * Make logfile configureable | |||
2017-12-01 | Add prospector for checking Python code (#1183) | Carlos Coêlho | |
2017-11-30 | Fix #1176 - Add an option for caching failing executable checks | w0rp | |
2017-11-28 | Add brittany for Haskell formatting | Evan Rutledge Borden | |
`brittany` is one of the options for Haskell source formatting. This adds the necessary fixer files and documentation to support `brittany` in `ALE`. | |||
2017-11-28 | Allow warnings about trailing blank lines to be hidden for flake8 and ↵ | w0rp | |
pycodestyle | |||
2017-11-28 | Fix #1168 - Make the ruby linter executable configurable | w0rp | |
2017-11-27 | Reference the JS ESLint options | Benjie Gillam | |
2017-11-27 | Fix typo | Benjie Gillam | |
2017-11-27 | Add support for linting GraphQL with ESLint | Benjie Gillam | |
2017-11-26 | Document go to definition support and put that and completion in an LSP section | w0rp | |
2017-11-26 | Fix #1166 - Add an option for the rls toolchain | w0rp | |