如何自定义 vim-syntastic?

How to customize vim-syntastic?

我写了一个 python 脚本。我的 vimrc 包含:

Plug 'vim-syntastic/syntastic'
let g:syntastic_python_checkers=['pyflakes']

我想把这种错误变成警告:

File.py|214 error| local variable 'rank_last_c' is assigned to but never used

我的代码是这样的:

def run():
    ...
    find(something)
    ...
def find(n):
    ...

很明显,定义了函数'find(n)'。 但是有这样的错误:

File.py|149 error| undefined name 'find'

我应该如何自定义我的 syntastic?

使用 flake8,您将能够 ignore errors 轻松。

但是对于你的第二个例子,我敢打赌它是

class MyClass:
    def run():
        find(something)

    def find(n):
        ...

所以你活该错误...