summaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
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
2017-11-18Add an FAQ entry explaining how to configure C or C++ projectsw0rp
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-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-12Sort some linter entries alphabeticallyw0rp
2017-11-12Fix #510 Support checking LESS files with stylelintw0rp
2017-11-12Add ocaml-language-server for OCaml and ReasonMLMichael Jungo
2017-11-12Add rstcheck linter to check for errors in restructured text (#1090)jnduli
2017-11-12#1098 Add protoc-gen-lint to the list of supported toolsw0rp
2017-11-09Add support for linting less files with lesscMarcus Zanona
2017-11-08Add PyLS linter (#1097)Auri
* Support PyLS (python language server) * Replace pyls#GetProjectRoot and add more config types to ale#python#FindProjectRoot