Skip to content

Conversation

@jabbalaci
Copy link
Contributor

Vulture (a new Python maker) was merged here: #420 . Let's indicate it in the README file too.

@blueyed
Copy link
Member

blueyed commented May 24, 2016

Please sort it to the end, link to the home page (https://bitbucket.org/jendrikseipp/vulture ?!) and mention that it is not enabled by default (in brackets).

@jabbalaci
Copy link
Contributor Author

OK, link added to the home page.

@blueyed blueyed merged commit 8a07498 into neomake:master May 29, 2016
@blueyed
Copy link
Member

blueyed commented May 29, 2016

Thanks!

@jabbalaci
Copy link
Contributor Author

I'm glad I could contribute. If anyone is interested how to use vulture (as it is not enabled by default), here is the corresponding part of my init.vim:

Plug 'neomake/neomake'
" {{{
    " neomake is async => it doesn't block the editor
    " It's a syntastic alternative. Syntastic was slow for me on python files.
    " $ sudo pip2/pip3 install flake8 -U
    " $ sudo pip2/pip3 install vulture -U
    let g:neomake_python_enabled_makers = ['flake8', 'pep8', 'vulture']
    " let g:neomake_python_enabled_makers = ['flake8', 'pep8']
    " E501 is line length of 80 characters
    let g:neomake_python_flake8_maker = { 'args': ['--ignore=E115,E266,E501'], }
    let g:neomake_python_pep8_maker = { 'args': ['--max-line-length=100', '--ignore=E115,E266'], }

    " run neomake on the current file on every write:
    autocmd! BufWritePost * Neomake
" }}}

rasmusx pushed a commit to rasmusx/neomake that referenced this pull request Dec 9, 2016
euclio pushed a commit to euclio/neomake that referenced this pull request Jan 17, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants