Lint Cython files
Project Links
Meta
Author: Marco Gorelli
Requires Python: >=3.8
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
- frozenlist
- 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.16.6
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-lint
comment (analogous to# noqa
inflake8
);
as well as the following command-line arguments:
--max-line-length
to control the maximum line length used by pycodestyle;--no-pycodestyle
if you don't want the pycodestyle checks;--ignore
if you want to ignore some specific pycodestyle checks;--files
to pass a Regex pattern with which to match files to include;--exclude
to pass a Regex pattern with which to match files to exclude.
Configuration can be set project-wise in a pyproject.toml
file at the root of the project.
Here's an example pyproject.toml
:
[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
pycodestyle
nitpicks (which you can turn off with--no-pycodestyle
)- repeated element in set
.strip
,.rstrip
, or.lstrip
used with repeated characters- unnecessary list index lookup
- unnecessary import alias
- variable defined but unused
- variable imported but unused
In addition, the following automated fixers are implemented:
- double-quote-cython-strings (replace single quotes with double quotes, like the
black
formatter does)
More to come! Requests welcome!
Nov 10, 2024
0.16.6
Nov 10, 2024
0.16.5
Nov 10, 2024
0.16.4
Nov 10, 2024
0.16.3
Apr 15, 2024
0.16.2
Apr 15, 2024
0.16.1
Nov 26, 2023
0.16.0
Apr 03, 2023
0.15.0
Apr 02, 2023
0.14.2
Mar 15, 2023
0.14.0
Mar 07, 2023
0.13.0
Feb 27, 2023
0.12.5
Feb 05, 2023
0.12.4
Feb 04, 2023
0.12.3
Feb 03, 2023
0.12.2
Feb 03, 2023
0.12.1
Feb 02, 2023
0.12.0
Jan 30, 2023
0.11.1
Jan 29, 2023
0.11.0
Dec 24, 2022
0.10.1
Dec 19, 2022
0.10.0
Nov 24, 2022
0.9.1
Nov 24, 2022
0.9.0
Nov 17, 2022
0.8.1
Nov 17, 2022
0.8.0
Nov 11, 2022
0.7.2
Nov 10, 2022
0.7.0
Nov 09, 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 08, 2022
0.5.1
Nov 06, 2022
0.4.0
Nov 05, 2022
0.3.1
Nov 04, 2022
0.3.0
Oct 31, 2022
0.2.1
Oct 30, 2022
0.2.0
Oct 12, 2022
0.1.10
Oct 12, 2022
0.1.9
Sep 28, 2022
0.1.8
Sep 24, 2022
0.1.7
Sep 12, 2022
0.1.6
Sep 11, 2022
0.1.5
Sep 03, 2022
0.1.4
Aug 29, 2022
0.1.3
Aug 28, 2022
0.1.2
Aug 28, 2022
0.1.1
Aug 28, 2022
0.1.0