Skip to main content

Lint Cython files

Project description

Build Status Coverage pre-commit.ci status

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!

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.21.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-lint comment (analogous to # noqa in flake8);

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;
  • --ban-relative-imports if you want to ban relative imports;
  • --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-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
  • loop control variable 'i' not used within the loop body (if this is intended, start the name with an underscore)
  • outer loop variable name overwritten by inner loop variable name
  • 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
  • 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 black formatter does)

More to come! Requests welcome!

Project details


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.21.0.tar.gz (29.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cython_lint-0.21.0-py3-none-any.whl (14.3 kB view details)

Uploaded Python 3

File details

Details for the file cython_lint-0.21.0.tar.gz.

File metadata

  • Download URL: cython_lint-0.21.0.tar.gz
  • Upload date:
  • Size: 29.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cython_lint-0.21.0.tar.gz
Algorithm Hash digest
SHA256 d4c4e58fd3770fa7fb6db9084735be1d1ba2b9c01618f939ccb568033964beba
MD5 f7843ce76292d75f98b13d3e664fa793
BLAKE2b-256 3efb6f9faa66a488110e555667a4eb803c2b34abd2039d9974c9a971b22de413

See more details on using hashes here.

Provenance

The following attestation bundles were made for cython_lint-0.21.0.tar.gz:

Publisher: publish_to_pypi.yml on MarcoGorelli/cython-lint

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cython_lint-0.21.0-py3-none-any.whl.

File metadata

  • Download URL: cython_lint-0.21.0-py3-none-any.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cython_lint-0.21.0-py3-none-any.whl
Algorithm Hash digest
SHA256 49796d815fd1ca93b9dff15de30c502a99164519c6a36901584a7e41ac8132ac
MD5 d54fa56345b6764f01d49b2fe49741c5
BLAKE2b-256 09fa94f7b38bdc810c31f0b817acecdb9eba1160105794a2fd9c563b6b22c190

See more details on using hashes here.

Provenance

The following attestation bundles were made for cython_lint-0.21.0-py3-none-any.whl:

Publisher: publish_to_pypi.yml on MarcoGorelli/cython-lint

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page