Lint Cython files
Project Links
Meta
Author: Marco Gorelli
Requires Python: >=3.10
Classifiers
License
- OSI Approved :: MIT License
Operating System
- OS Independent
Programming Language
- Python :: 3
cython-lint
Everything flake8 used to do (by accident), plus much more.
A tool and pre-commit hook to lint Cython files.
Used by
Here's some major projects using cython-lint - is yours missing? Feel free to open a pull request!
- arrow-adbc
- ansible-pylibssh
- arrow
- CuPy
- dpctl
- frozenlist
- mkl_fft
- mkl-service
- NumPy
- open library
- pandas
- pymatgen
- PyRFC
- RAPIDS cuspatial
- RAPIDS cudf
- RAPIDS Memory Manager
- sagemath/sage
- scikit-image
- scikit-learn
- scipy
- spaCy
- yarl
- yt
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.19.0
hooks:
- id: cython-lint
- id: double-quote-cython-strings
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 (try prefixing with underscore?)
my_file_3.pyx:4:9: dangerous default value!
my_file_3.pyx:5:9: comma after base type in definition
Configuration
The following configuration options are available:
- exclude lines by including a
# no-cython-lintcomment (analogous to# noqainflake8);
as well as the following command-line arguments:
--max-line-lengthto control the maximum line length used by pycodestyle;--no-pycodestyleif you don't want the pycodestyle checks;--ban-relative-importsif you want to ban relative imports;--ignoreif you want to ignore some specific pycodestyle checks;--filesto pass a Regex pattern with which to match files to include;--excludeto pass a Regex pattern with which to match files to exclude.
Configuration can be set project-wide in a .cython-lint.toml or pyproject.toml file
at the root of the project. Here's an example:
[tool.cython-lint]
max-line-length = 88
ignore = ['E503', 'E504']
exclude = 'my_project/excluded_cython_file.pyx'
Which checks are implemented?
- assert statement with tuple condition (always true...)
- comma after base type definition (e.g.
cdef ndarray, arr) - comparison between constants
- dangerous default value
- dict key repeated
- dict key variable repeated
- f-string without placeholders
- if-statement with tuple condition (always true...)
- late-binding closures https://docs.python-guide.org/writing/gotchas/#late-binding-closures
- pointless string statement
pycodestylenitpicks (which you can turn off with--no-pycodestyle)- repeated element in set
.strip,.rstrip, or.lstripused with repeated characters- unnecessary list index lookup
- unnecessary import alias
- variable defined but unused
- variable imported but unused
- unnecessary
list/set/dict+ generator (just use a comprehension)
In addition, the following automated fixers are implemented:
- double-quote-cython-strings (replace single quotes with double quotes, like the
blackformatter does)
More to come! Requests welcome!
0.19.0
Feb 01, 2026
0.18.1
Oct 19, 2025
0.18.0
Oct 14, 2025
0.17.0
Oct 03, 2025
0.16.7
Jul 04, 2025
0.16.6
Nov 10, 2024
0.16.5
Nov 10, 2024
0.16.4
Nov 10, 2024
0.16.3
Nov 10, 2024
0.16.2
Apr 15, 2024
0.16.1
Apr 15, 2024
0.16.0
Nov 26, 2023
0.15.0
Apr 03, 2023
0.14.2
Apr 02, 2023
0.14.0
Mar 15, 2023
0.13.0
Mar 07, 2023
0.12.5
Feb 27, 2023
0.12.4
Feb 05, 2023
0.12.3
Feb 04, 2023
0.12.2
Feb 03, 2023
0.12.1
Feb 03, 2023
0.12.0
Feb 02, 2023
0.11.1
Jan 30, 2023
0.11.0
Jan 29, 2023
0.10.1
Dec 24, 2022
0.10.0
Dec 19, 2022
0.9.1
Nov 24, 2022
0.9.0
Nov 24, 2022
0.8.1
Nov 17, 2022
0.8.0
Nov 17, 2022
0.7.2
Nov 11, 2022
0.7.0
Nov 10, 2022
0.6.4
Nov 09, 2022
0.6.3
Nov 09, 2022
0.6.2
Nov 09, 2022
0.6.1
Nov 09, 2022
0.6.0
Nov 09, 2022
0.5.1
Nov 08, 2022
0.4.0
Nov 06, 2022
0.3.1
Nov 05, 2022
0.3.0
Nov 04, 2022
0.2.1
Oct 31, 2022
0.2.0
Oct 30, 2022
0.1.10
Oct 12, 2022
0.1.9
Oct 12, 2022
0.1.8
Sep 28, 2022
0.1.7
Sep 24, 2022
0.1.6
Sep 12, 2022
0.1.5
Sep 11, 2022
0.1.4
Sep 03, 2022
0.1.3
Aug 29, 2022
0.1.2
Aug 28, 2022
0.1.1
Aug 28, 2022
0.1.0
Aug 28, 2022