Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-06-05 | Allow all Python linter executables to be set to `pipenv`. | Eddie Lebow | |
It appends ` run {linter_name}`, analogously to the Ruby linters when the executable is set to `bundle` | |||
2018-04-17 | Fix #1507 - Add an option for disabling switching directories for pylint | w0rp | |
2018-04-10 | Fix #1492 - Make pylint error parsing work on Windows | w0rp | |
2018-04-09 | Close #542 - Add an option for disabling running locally installed ↵ | w0rp | |
executables by default | |||
2018-04-09 | pylint: Move to the buffer's directory before running pylint command (Fix #1472) | rhysd | |
2017-11-15 | #852 Capture error codes for pylint, throw away the msgid values | w0rp | |
2017-08-08 | Ban use of ==# or ==? in the codebase, and prefer is# or is? instead | w0rp | |
2017-07-05 | #729 - Support running Python programs from virtualenv for Windows | w0rp | |
2017-06-25 | Change regex to better handle messages with multiple groups of parentheses. | John Sivak | |
2017-06-25 | Feature/restore display of symbol (#693) | John Sivak | |
* Add display of the pylint symbol name after the message. * Update test to pass. | |||
2017-05-24 | Translate pylint output column to 1-based index | Nozomu Okuda | |
This should fix #575; also added vader tests to ensure that translation is working properly. | |||
2017-05-12 | #549 Temporarily revert shell escaping changes, just for Windows | w0rp | |
2017-05-08 | #540 Fix shell escaping pretty much everywhere | w0rp | |
2017-05-06 | Escape the pylint executable appropriately | w0rp | |
2017-05-06 | Fix #208 - Use the file on disk for pylint, and follow import paths | w0rp | |
2017-05-06 | #208 Automatically detect pylint in virtualenv directories | w0rp | |
2017-04-24 | Break shared handlers up into their own files, and fix stylelint error handling | w0rp | |
2017-04-16 | #427 Implement buffer variable overrides for all linter options | w0rp | |
2017-02-25 | Add display of the pylint symbol name for the msg_id. | John Sivak | |
2017-02-11 | Replace every stdin-wrapper script with the new %t formatting support | w0rp | |
2017-01-15 | Rename pylint _args variables to _options variables | w0rp | |
2017-01-13 | Add executable and arguments options for pylint linter | SABATIER Boris | |
2016-10-27 | Add pylint formatter | Keith Smiley | |
This customizes the output format of pylint in order to use the same pep8 parser |