Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Options for linting Cython code

I have a Cython module that I would like to lint PEP8 style, however pylint syntax errors on Cython cdef syntax. Does anyone have a suggestion about how to maintain Python coding standards for Cython code?

like image 323
Rich Avatar asked Aug 27 '14 19:08

Rich


People also ask

Does Flake8 use Pylint?

By default Flake8 has two formatters built-in, default and pylint .

What does Linter Pylint do?

Linting highlights syntactical and stylistic problems in your Python source code, which often helps you identify and correct subtle programming errors or unconventional coding practices that can lead to errors.


1 Answers

Although not command-line based, PyCharm claims to have Cython support. Unfortunately, it's only available on the paid-version "Professional Edition".

like image 127
pepoluan Avatar answered Sep 26 '22 17:09

pepoluan