0

我已经安装了 pep8 命名(https://pypi.python.org/pypi/pep8-naming

finchpowers@dev:~$ flake8 --version
2.1.0 (pep8: 1.5.7, pyflakes: 0.8.1, mccabe: 0.2.1, naming: 0.2.2) CPython 2.7.3 on Linux

所以看起来不错。在我的 .vimrc 我有

let g:pymode_lint_checkers = "pyflakes,pep8,mccabe,pep257"

在 vim 中,没有报告我的命名错误。是否支持?我错过了任何一步吗?

谢谢

4

1 回答 1

1

I'm using the pathogen plugin manager for vim and loading flake8 into syntastic.

This worked for me: ~/.vimrc:

call pathogen#infect()
syntax enable
let g:syntastic_python_checkers=['flake8']
于 2015-02-06T23:23:46.660 回答