A linter for Cython files
Project description
cython-lint
A tool and pre-commit hook to lint Cython files.
Installation
$ pip install cython-lint
Usage as a pre-commit hook
See pre-commit for instructions
Sample .pre-commit-config.yaml
:
- repo: https://github.com/MarcoGorelli/cython-lint
rev: v0.3.1
hooks:
- id: cython-lint
Command-line example
$ cython-lint my_file_1.pyx my_file_2.pyx
my_file_1.pyx:54:5: 'get_conversion_factor' imported but unused
my_file_2.pyx:1112:38: 'mod' defined but unused
Configuration
The following configuration options are available:
- exclude lines by including a
# no-cython-lint
comment (analogous to# noqa
inflake8
); - use the command-line argument
--max-line-length
to control the maximum line length used by pycodestyle; - use the command-line argument
--no-pycodestyle
if you don't want the pycodestyle checks.
Currently, the following checks are implemented:
- variable defined but unused
- variable imported but unused
- comma after base type definition (e.g.
cdef ndarray, arr
) - pycodestyle checks, except these that aren't in general applicable to Cython code:
- E121 continuation line under-indented for hanging indent
- E123 closing bracket does not match indentation of opening bracket’s line
- E126 continuation line over-indented for hanging indent
- E133 closing bracket is missing indentation
- E203 whitespace before ‘,’, ‘;’, or ‘:’
- E211 whitespace before '('
- E225 missing whitespace around operator
- E226 missing whitespace around arithmetic operator
- E227 missing whitespace around bitwise or shift operator
- E241 multiple spaces after ‘,’
- E242 tab after ‘,’
- E271 multiple spaces after keyword
- E272 multiple spaces before keyword
- E275 missing whitespace after keyword
- E4 imports (
isort
supports Cython code, best to just use that) - E704 multiple statements on one line (def)
- E9 runtime
- W5 line break warning
More to come! Requests welcome!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cython_lint-0.3.1.tar.gz
(7.4 kB
view hashes)
Built Distribution
Close
Hashes for cython_lint-0.3.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3cde149e3c78191c3e7557dbe2585b7b4aac82dd9ed929db8df06ef37ef23dd7 |
|
MD5 | 46c3985247c482452f907a0a42a9de4a |
|
BLAKE2b-256 | 3d3a538b86f5551daa48c8f670bbfc3ef859e7c4cd7be77d9e2a2c865319dd54 |