andviro / flake8-vim

Pyflakes, Pep8 and mccabe code complexity checker for Vim, bundled with latest libraries for easy installation
63 stars 18 forks source link

use latest version of dependencies #13

Closed AdrienLemaire closed 10 years ago

AdrienLemaire commented 10 years ago

Can you auto-update flake8-vim when dependencies packages are updated ?

I see we currently use Frosted 1.4.0, when I wish to use v1.4.1 (for the noqa feature).

Thanks Cordially

AdrienLemaire commented 10 years ago

Hmm, entering ~/.vim/bundle/flake8-vim/ and running git submodule foreach git pull origin master fixed the issue. Note sure if the problem comes from flake8-vim or Vundle.

And I'm still getting the error:

 __init__.py|1 error| "from app import *" used; unable to detect undefined names [frosted]

for the line

 from app import *  # noqa

weird...

andviro commented 10 years ago

Hi! This is correct behaviour of Git and Vundle, 'cause pulling other revision than specified in submodule could break things. I'll try to update deps some time soon, sorry, very busy at the moment.

char101 commented 10 years ago

The noqa lines must be feed into checker which vim flake8 doesn't currently do.

andviro commented 10 years ago

fixed in 46232e38