标签: cython pylint pep8 flake8
有没有办法将pep8用于cython文件?
pep8不适用于运营商。
getline(& line)
产生错误:
E225 missing whitespace around operator
现在,如果我尝试修复它并运行它:
getline( & line)
E201 whitespace after '('
答案 0 :(得分:4)
神经网络库Chainer为Cython提供了一个非常方便的flake8 config:
[flake8] filename = *.pyx,*.px* exclude = .eggs,*.egg,build ignore = E901,E225,E226,E227