summaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
2018-03-02Merge pull request #1390 from jdeniau/jd-feat-phpCsFixerw0rp
add php-cs-fixer to list of fixers
2018-03-02Option to open lists vertically (#1381)Andrew Crites
* Add configuration option to open lists vertically * Add tests, clean up vertical list config * Vertical list option cleanup * Use is# for tests * Order properties in documentation alphabetically
2018-03-01add php-cs-fixer to list of fixersJulien Deniau
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-25go vet can only check files noww0rp
2018-02-18Merge pull request #1343 from kevinkjt2000/ponycw0rp
Add Support for Ponylang
2018-02-12Fix reason help referenceDennis Falling
`ale-integration-reason-merlin` doesn't exist, changed to `ale-reasonml-ols`
2018-02-10functional pony linterKevin Tindall
2018-02-01Add prettier fixer support to vueblyoa
2018-01-30Merge pull request #1308 from lorenzo/patch-1w0rp
Improving hadolint checker
2018-01-29Added tests for hadolintJose Lorenzo Rodriguez
2018-01-28Merge pull request #1321 from butlerx/feature/pow0rp
add po support with proselint, writegood, msgfmt and alex
2018-01-27add po support with proselint, writegood, msgfmt and alexbutlerx
2018-01-24add prettier support for graphqlbutlerx
2018-01-24Merge pull request #1157 from elebow/eruby-add-erubi-linterw0rp
[eruby] Add erubi linter
2018-01-24Support fixing JSON files with fixjsonrhysd
2018-01-24Add jq as a JSON fixerRafael Rinaldi
2018-01-22Add Elixir linter for dialyxir (#1257)Fran Casas
* Add Elixir linter for dialyxir * Update doc/ale.txt with dialyxir * Keep elixir tools alphabetically ordered in README * Add a missing entry for dialyxir to the main documentation file.
2018-01-19Merge pull request #1287 from rhysd/prettier-markdownw0rp
Enable prettier to format markdown files
2018-01-19Merge pull request #1272 from Codezerker/masterw0rp
Add a luac linter for Lua
2018-01-16[eruby] Add erubi linterEddie Lebow
Erubi is yet another parser for eRuby. This is the default parser in Rails as of version 5.1. It supports some additional syntax with similar behavior to Rails' extensions to the language, though incompatible. Rails currently still recommends their own syntax, so GetCommand still has to do the translation introduced in https://github.com/w0rp/ale/pull/1114 . Erubi does not supply an executable—It is intended to be invoked only from within a Ruby program. In this case, a one-liner on the command line.
2018-01-15Enable prettier to format markdown filesrhysd
2018-01-12Show only the master status for AppVeyorw0rp
2018-01-08Add a luac linter for Luajiangzhi.xie
2018-01-07Go: Add gotype support (#1099)Jelte Fennema
2018-01-02Merge pull request #1252 from nthapaliya/fish-shell-linterw0rp
Fish shell linter
2018-01-02Merge branch 'add-fountain-proselint-support'w0rp
2017-12-26Edit README and helpNiraj Thapaliya
2017-12-20Add support for linting git commit message files (#1233)Nick Diego Yamane
2017-12-19Add Fountain and linter support information to README.Jansen Mitchell
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-17Merge pull request #1220 from languitar/linter-alexw0rp
Add a linter for alex
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-07Merge pull request #1174 from ↵w0rp
eborden/eborden/add-brittany-for-haskell-formatting Add brittany for Haskell formatting
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-04Update documentationFranco Victorio
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-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-27Add support for linting GraphQL with ESLintBenjie Gillam
2017-11-26Add go to definition to the READMEw0rp
2017-11-20Add `drafter` for checking API Blueprint files (#1152)Shogo NAMEKI
2017-11-19Fix a typow0rp
2017-11-19Add an FAQ entry explaining how to configure ALE for different buffers.w0rp