summaryrefslogtreecommitdiff
path: root/doc/ale.txt
AgeCommit message (Collapse)Author
2017-12-18Make alex a file linterJohannes Wienke
alex does not find its configuration file when using temporary files for input.
2017-12-18Indicate that 4.2.0 is no longer strictly required for prettier-eslint, and ↵w0rp
add links for prettier-eslint and prettier-standard
2017-12-18Sort the list of supported tools and add vale to more languagesw0rp
2017-12-18Update docsDaniel Parker
2017-12-17Merge pull request #1220 from languitar/linter-alexw0rp
Add a linter for alex
2017-12-17Clean up some doc formattingw0rp
2017-12-17Merge pull request #1203 from Carpetsmoker/autocmd-startw0rp
Add ALEStartLint autocmd
2017-12-17Update ale.txtw0rp
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-07Merge pull request #1174 from ↵w0rp
eborden/eborden/add-brittany-for-haskell-formatting Add brittany for Haskell formatting
2017-12-07Update ale.txtw0rp
2017-12-07Merge pull request #1192 from fvictorio/add-solhint-supportw0rp
Add solhint support
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-05Update doc/ale.txt to include brittany.Evan Rutledge Borden
2017-12-04Update documentationFranco Victorio
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-01Add glslls (#1179)Sven-Hendrik Haase
* Add glslls-based LSP linter * Make logfile configureable
2017-12-01Add prospector for checking Python code (#1183)Carlos Coêlho
2017-11-30Fix #1176 - Add an option for caching failing executable checksw0rp
2017-11-28Add brittany for Haskell formattingEvan 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-28Allow warnings about trailing blank lines to be hidden for flake8 and ↵w0rp
pycodestyle
2017-11-28Fix #1168 - Make the ruby linter executable configurablew0rp
2017-11-27Add support for linting GraphQL with ESLintBenjie Gillam
2017-11-26Document go to definition support and put that and completion in an LSP sectionw0rp
2017-11-22Add support for post-processing fixer outputw0rp
2017-11-22Support fixer aliases, and make prettier-eslint and prettier-standard just workw0rp
2017-11-22Disable piping buffer data into commands for fixing files where neededw0rp
2017-11-20Add `drafter` for checking API Blueprint files (#1152)Shogo NAMEKI
2017-11-19Make the message formats configurable with buffer local variablesw0rp
2017-11-19Add an FAQ entry explaining how to configure ALE for different buffers.w0rp
2017-11-17Merge pull request #1142 from rhysd/redpen-extw0rp
* redpen support for asciidoc, reST, LaTeX and Re:VIEW * redpen: fix start column * add redpen as text linter
2017-11-17Fix #741 - Set highlights for entire lines when signs are disabledw0rp
2017-11-17add redpen as text linterrhysd
2017-11-17redpen support for asciidoc, reST, LaTeX and Re:VIEWrhysd
2017-11-16Merge pull request #1133 from nicwest/linter-clj-jokerw0rp
add joker handler for clojure
2017-11-16add tests and doc for redpen supportrhysd
2017-11-15add joker handler for clojureNic West
Adds new linter for clojure using joker https://github.com/candid82/joker fixes #975 ref #544 #1040
2017-11-15Update the documentation for GetLoclistw0rp
2017-11-14Update the documentation for :ALEDetailw0rp
2017-11-14Fix #1128 - Add g:ale_linters_explicit for only enabling linters explicitlyw0rp
2017-11-14Added support for goimports fixer (#1123)Jeff Willette
* Added support for goimports fixer * added test and executable check * fixed test assertions to reflect executable check
2017-11-14Fix #1069 Support formatting the loclist messages with g:ale_loclist_msg_formatw0rp
2017-11-13#1121 Tell people how to lint when leaving insert mode with Ctrl+Cw0rp
2017-11-13#852 Support formatting echo messages with error codes. No linters set the ↵w0rp
`code` key yet
2017-11-12Add support for showing Info severities in echoed messagesw0rp
2017-11-12Update the documentation for the echo message format, so it makes more sensew0rp
2017-11-12Sort some linter entries alphabeticallyw0rp