summaryrefslogtreecommitdiff
path: root/ale_linters/python
AgeCommit message (Collapse)Author
2018-09-15Add `python_auto_pipenv` config var for all python linters.Eddie Lebow
This allows a user to set one variable instead of eight.
2018-09-15Add 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-07-26fix(linters: python): mark as lint_fileactionless
2018-07-26Add support for 'vulture' for PythonYauhen Kirylau
2018-07-04Make the language option for LSP linters optionalw0rp
2018-07-04Remove deprecated code for the 2.0 releasev2.0.0w0rp
2018-07-01add pyre lsp linter to python lintersDerek P Sifford
2018-06-27Merge pull request #1682 from fennerm/fix_prospector_e474w0rp
Fix prospector empty string error
2018-06-26Fix prospector empty string errorFenner Macrae
Prospector linter is raising error when no warnings are present in file (#1680). Copied fix from #779.
2018-06-05Allow 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-06-02Allow flake8 executable to be set to `pipenv`.Eddie Lebow
It appends ` run flake8`, analogously to the Ruby tools when the executable is set to `bundle`
2018-05-28#1587 - Add deprecation warnings for old linter optionsw0rp
2018-05-28Fix #1566 - Add g:ale_python_flake8_change_directoryw0rp
2018-04-27Close #1521 - Allow the language to be set with simple strings for LSP lintersw0rp
2018-04-26flake8: Move to the buffer's directory before running flake8 commandAndreas Kloeckner
2018-04-22Close #1162 - Implement completion support with LSP serversw0rp
2018-04-17Fix #1507 - Add an option for disabling switching directories for pylintw0rp
2018-04-10Fix #1492 - Make pylint error parsing work on Windowsw0rp
2018-04-09Close #542 - Add an option for disabling running locally installed ↵w0rp
executables by default
2018-04-09pylint: Move to the buffer's directory before running pylint command (Fix #1472)rhysd
2018-02-18#476 Make F401 a warning and E112 a syntax errorw0rp
2018-01-11Allow syntax errors for mypy to be ignoredw0rp
2017-12-01Add prospector for checking Python code (#1183)Carlos Coêlho
2017-11-28Allow warnings about trailing whitespace to be disabled for pycodestyle, and ↵w0rp
cover the flake8 code with tests
2017-11-28Allow warnings about trailing blank lines to be hidden for flake8 and ↵w0rp
pycodestyle
2017-11-21Escape the pyls executable in the command, and support running virtualenv ↵w0rp
pyls executables
2017-11-17Fix #516 - Add support for pyflakes for Pythonw0rp
2017-11-15#852 Capture error codes for pycodestyle, and consider every code except ↵w0rp
E999 to be style errors or warnings
2017-11-15#852 Capture error codes for pylint, throw away the msgid valuesw0rp
2017-11-14#852 - Capture error codes for flake8w0rp
2017-11-09Simplfy semver handling and share the semver version cache across everythingw0rp
2017-11-08Add PyLS linter (#1097)Auri
* Support PyLS (python language server) * Replace pyls#GetProjectRoot and add more config types to ale#python#FindProjectRoot
2017-08-25Add pycodestyle Python linter support (#872)Michael
Add a pycodestyle linter
2017-08-20#653 Show errors from other files for mypyw0rp
2017-08-11Ban !=# and !=? from the codebasew0rp
2017-08-10Move --format=default in the flake8 command to the return value, and remove ↵w0rp
extra spaces in the tests
2017-08-09Default flake8 to --format=defaultMatthew Grossman
2017-08-08Ban use of ==# or ==? in the codebase, and prefer is# or is? insteadw0rp
2017-07-05#729 - Support running Python programs from virtualenv for Windowsw0rp
2017-06-27Remove style classification from E999 (#696)v1.4.0Nick Krichevsky
* Remove style classification from E999 * Update test_flake8_handler to reflect E999 changes
2017-06-27Fix #680 - Use --shadow-file to check for problems with mypy while you typew0rp
2017-06-25Change regex to better handle messages with multiple groups of parentheses.John Sivak
2017-06-25Feature/restore display of symbol (#693)John Sivak
* Add display of the pylint symbol name after the message. * Update test to pass.
2017-06-14#430 Use the style sub_type for flake8 problemsw0rp
2017-06-14Split up the flake8 and ansible-lint handlersw0rp
2017-05-31Fix #596 - Report exceptions thrown by flake8w0rp
2017-05-24Translate pylint output column to 1-based indexNozomu 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 Windowsw0rp
2017-05-08#540 Fix shell escaping pretty much everywherew0rp
2017-05-07Support `python -m flake8` for users who are running flake8 that wayw0rp