Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-28 | Add better support for Haskell stack compiler tools (#1851) | Evan Borden | |
* Add better support for Haskell stack compiler tools This commit adds support for `stack` as the executable of a tool. This follows a pattern that has been implemented for `bundler`'s tool chain. * Move hlint command to linter file * Add vader test for stack exec handling * Update ghc-mod to support stack execution `ghc-mod` was previously broken into 2 linters. 1. ghc_mod 2. stack_ghc_mod This additional linter is not necessary with proper support for executable variables and `stack exec` handling. * Support stack exec in hfmt * Support stack in hdevtools | |||
2018-09-28 | Merge pull request #1950 from yejingchen/ccls | w0rp | |
Add ccls support for C/C++/ObjC | |||
2018-09-27 | Merge pull request #1917 from jpsouzasilva/fix-stylelint-scss | w0rp | |
Support options when using Stylelint with SCSS | |||
2018-09-27 | Add psalm linter for PHP (#1893) | Richard Marmorstein | |
2018-09-26 | Add ccls tests | Ye Jingchen | |
2018-09-26 | Merge pull request #1908 from KtorZ/master | w0rp | |
Allow extra options to be passed to haskell:hlint | |||
2018-09-26 | Add ccls support for C/C++/ObjC | Ye Jingchen | |
2018-09-25 | #1941 Explain how to alleviate a timeoutlen Vim bug by changing settingsv2.2.0 | w0rp | |
2018-09-19 | Fix typo in Solargraph documentation | Eddie Lebow | |
2018-09-19 | Merge pull request #1719 from elebow/auto-pipenv-option-for-python-linters | w0rp | |
Add python_[linter]_auto_pipenv options for python linters (fixes #1656) | |||
2018-09-19 | Add fixer for Go modules (#1873) | Martin Tournoij | |
* Add fixer for Go modules | |||
2018-09-18 | Solargraph stdio | Devon Meunier | |
2018-09-18 | Define custom vim global variables to pass options to hlint | KtorZ | |
2018-09-16 | thrift: default thrift_thrift_includes to ['.'] | Jon Parise | |
In a lint context, it's useful to assume that included files sit next to the current file by default. Users can still further customize this configuration variable to add more include paths. | |||
2018-09-15 | Add `python_auto_pipenv` config var for all python linters. | Eddie Lebow | |
This allows a user to set one variable instead of eight. | |||
2018-09-15 | Add python_[linter]_auto_pipenv options for python linters (fixes #1656) | Eddie Lebow | |
When set to true, and the buffer is currently inside a pipenv, GetExecutable will return "pipenv", which will trigger the existing functionality to append the correct pipenv arguments to run each linter. Defaults to false. I was going to implement ale#python#PipenvPresent by invoking `pipenv --venv` or `pipenv --where`, but it seemed to be abominably slow, even to the point where the test suite wasn't even finishing ("Tried to run tests 3 times"). The diff is: diff --git a/autoload/ale/python.vim b/autoload/ale/python.vim index 7baae079..8c100d41 100644 --- a/autoload/ale/python.vim +++ b/autoload/ale/python.vim @@ -106,5 +106,9 @@ endfunction " Detects whether a pipenv environment is present. function! ale#python#PipenvPresent(buffer) abort - return findfile('Pipfile.lock', expand('#' . a:buffer . ':p:h') . ';') isnot# '' + let l:cd_string = ale#path#BufferCdString(a:buffer) + let l:output = systemlist(l:cd_string . 'pipenv --where')[0] + " `pipenv --where` returns the path to the dir containing the Pipfile + " if in a pipenv, or some error text otherwise. + return strpart(l:output, 0, 18) !=# "No Pipfile present" endfunction Using vim's `findfile` is much faster, behaves correctly in the majority of situations, and also works reliably when the `pipenv` command doesn't exist. | |||
2018-09-14 | Merge pull request #1850 from rrosenblum/ruby_linters | w0rp | |
Update all Ruby linters to work consistently with bundler | |||
2018-09-14 | #1889 Add support for automatically previewing messages based on the cursor ↵ | w0rp | |
position | |||
2018-09-13 | Support options when using Stylelint with SCSS | jpsouzasilva | |
Complement missing documentation | |||
2018-09-12 | Update all Ruby linters to work consistently with bundler | Ryan Rosenblum | |
2018-09-10 | Add support for Julia Language Server (#1894) | w0rp | |
2018-09-09 | doc: fix typo in ale-rust.txt | Daniel Hahler | |
[ci skip] | |||
2018-09-09 | Added julia to the list in ale-support docs | Bartolomeo Stellato | |
2018-09-09 | Merge pull request #1897 from LEI/add-sqlfmt-fixer | w0rp | |
Add support for sqlfmt | |||
2018-09-09 | Merge pull request #1885 from dsifford/dsifford-fixer-uncrustify | w0rp | |
add uncrustify fixer for several languages | |||
2018-09-08 | Fix other warnings | Bartolomeo Stellato | |
2018-09-08 | Try to fix CI | Bartolomeo Stellato | |
2018-09-08 | Add support for sqlfmt | LEI | |
2018-09-07 | really fix lint errors | Derek P Sifford | |
2018-09-07 | Added various files to integrate julia. Still not working. | Bartolomeo Stellato | |
2018-09-06 | fix lint test failures | Derek P Sifford | |
2018-09-06 | Add golangci-lint (#1890) | Sascha Grunert | |
2018-09-06 | Fix #1822 - support go-langserver lsp. | Horacio Sanson | |
2018-09-04 | add uncrustify fixer for several languages | Derek P Sifford | |
2018-09-01 | Changed sbtserver to just work off of the address variable | Ty Coghlan | |
2018-08-30 | added sbtserver linter | Ty Coghlan | |
2018-08-29 | Merge pull request #1865 from TheLocehiliosan/puppet-options | w0rp | |
Support options for puppet parser validate | |||
2018-08-29 | Always use --color=false when validating puppet | Tim Byrne | |
Colorized output is difficult for ALE to parse. | |||
2018-08-28 | Merge pull request #1866 from Steap/feature/xmllint-fixer | w0rp | |
Add support for xmllint as a fixer. | |||
2018-08-28 | Merge pull request #1856 from sbl/ocamlformat | w0rp | |
add ocamlformat support | |||
2018-08-28 | Merge pull request #1849 from hsanson/1848-add-support-for-java-lsp | w0rp | |
Add vscode-java-language-server linter | |||
2018-08-28 | Add support for xmllint as a fixer. | Cyril Roelandt | |
2018-08-27 | Update TOC for ale-puppet-puppet | Tim Byrne | |
2018-08-27 | Support options for puppet parser validate | Tim Byrne | |
It can be necessary to pass options to the puppet parser validation. The most glaring example of this is when using Puppet 3, with the `parser = future` option enabled. This update allows adding `--parser=future` to the options passed to Puppet. | |||
2018-08-27 | Add solargraph LSP linter. | Horacio Sanson | |
2018-08-26 | Add java lsp linter to documentation | Horacio Sanson | |
2018-08-26 | add ocamlformat support | sbl | |
2018-08-24 | Sort the HTML documentation sections | w0rp | |
2018-08-24 | Merge pull request #1839 from filipekiss/feature/stylelint-inline-css | w0rp | |
Add Stylelint as HTML Linter | |||
2018-08-24 | :books: Add html stylelint to TOC | Filipe Kiss | |