Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | Fix bug with RuboCop linter when options are not set | Ryan Rosenblum | |
2018-09-14 | Merge pull request #1850 from rrosenblum/ruby_linters | w0rp | |
Update all Ruby linters to work consistently with bundler | |||
2018-09-14 | Return only the unescaped executables from executable callbacks | w0rp | |
2018-09-14 | Change PCRE escape to simple escape | Sascha Grunert | |
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-10 | Fixed NASM linter from outputting junk file | Daniel Jones | |
2018-09-09 | Escape julia command + reorder table in README | Bartolomeo Stellato | |
2018-09-08 | Fix other warnings | Bartolomeo Stellato | |
2018-09-07 | Fix julia escaping + minor edits | Bartolomeo Stellato | |
2018-09-07 | Added tests | Bartolomeo Stellato | |
2018-09-07 | Added various files to integrate julia. Still not working. | Bartolomeo Stellato | |
2018-09-06 | Add golangci-lint (#1890) | Sascha Grunert | |
2018-09-06 | #1891 Fix the go-langserver tests | w0rp | |
2018-09-06 | Merge pull request #1870 from hsanson/1822-add-go-langserver-support | w0rp | |
Fix #1822 - support go-langserver lsp. | |||
2018-09-06 | Fix #1866 - Handle empty output from Perl | w0rp | |
2018-09-06 | Fix #1822 - support go-langserver lsp. | Horacio Sanson | |
2018-09-04 | Improve ALE project style checking | w0rp | |
* The project style linter now runs while you type. * Now the scripts for checking the project require blank lines. * Many style issues have been found and fixed. | |||
2018-09-04 | Merge pull request #1871 from Ophirr33/master | w0rp | |
added sbtserver linter | |||
2018-09-04 | Fix the dart language server command and cover it with tests | w0rp | |
2018-09-03 | Replace removed function | Jacob Mischka | |
Replaces removed `ale_linters#dart#language_server#GetExecutable`. Fixes #1881 | |||
2018-09-03 | Merge pull request #1869 from Steap/feature/gitlint-ignore-whitespace | w0rp | |
gitcommit: fully implement warn_about_trailing_whitespace | |||
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-30 | Started adding julia languageserver | Bartolomeo Stellato | |
2018-08-30 | gitcommit: fully implement warn_about_trailing_whitespace | Cyril Roelandt | |
Fixes #1761 | |||
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 #1849 from hsanson/1848-add-support-for-java-lsp | w0rp | |
Add vscode-java-language-server linter | |||
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 vader test and fix command callback. | Horacio Sanson | |
2018-08-24 | Merge pull request #1839 from filipekiss/feature/stylelint-inline-css | w0rp | |
Add Stylelint as HTML Linter | |||
2018-08-24 | Add clazy as cpp linter | fenuks | |
2018-08-24 | Fix #1844 - Make the kotlin languageserver linter work again | w0rp | |
2018-08-24 | Add vscode-java-language-server linter | Horacio Sanson | |
2018-08-23 | Merge pull request #1835 from barreyra/master | w0rp | |
Enabling clangd for cpp, objc and objcpp | |||
2018-08-23 | Merge pull request #1820 from SuRaMoN/master | w0rp | |
Added phpcs options support as described in #257 | |||
2018-08-23 | Enabling clangd for cpp, objc and objcpp | Bruno R. Barreyra | |
2018-08-23 | Remove "go env" from gobuild linter | Martin Tournoij | |
I see no reason to do this? It is just setting the environment to what it already is? It was originally added in #297, but that entire PR is not a great idea in the first place; that PR (together with #270) tried to make the Go do non-standard and non-supported stuff like compiling packages outside of GOPATH. That's not something that works well (I tried), so was eventually removed in #465, but these "go env" calls remained, for no reason in particular, as far as I can think of. This will improve on #1834; you will now no longer get a confusing error (but still won't get a meaningful error; need to think how to do that). | |||
2018-08-22 | Add html stylelint linter | Filipe Kiss | |
2018-08-18 | Added and fixed tests | matthias | |
2018-08-16 | Added phpcs options support as described in #257 | matthias | |
2018-08-16 | feat: add ale_go_govet_options variable | tyru | |
2018-08-12 | Merge pull request #1806 from jimenezrick/fix-rustc-linter | w0rp | |
Fix #1684: Use the correct flag name in rustc linter | |||
2018-08-10 | Fix #1684: Use the correct flag name in rustc linter | Ricardo Catalinas Jiménez | |
The rust compiler renamed the option '-Z no-trans' to '-Z no-codegen'. https://github.com/rust-lang/rust-enhanced/issues/281 |