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.16.4
    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;
  • --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!

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

Uploaded Source

Built Distribution

cython_lint-0.16.4-py3-none-any.whl (12.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: cython_lint-0.16.4.tar.gz
  • Upload date:
  • Size: 26.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for cython_lint-0.16.4.tar.gz
Algorithm Hash digest
SHA256 7ebb774a25a5ef516fc69d7d8f3ca7f288d866df2aeb999ffcbfcc532446fda3
MD5 53d2e20d0a955456efbaaecd7a1fe4d8
BLAKE2b-256 e02d2fdf31640ea9609283b06b74ee32b9505ee8bdb3c64c847636a3f693c12d

See more details on using hashes here.

Provenance

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

Publisher: GitHub
  • Repository: MarcoGorelli/cython-lint
  • Workflow: publish_to_pypi.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: cython_lint-0.16.4.tar.gz
    • Subject digest: 7ebb774a25a5ef516fc69d7d8f3ca7f288d866df2aeb999ffcbfcc532446fda3
    • Transparency log index: 147938284
    • Transparency log integration time:

File details

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

File metadata

  • Download URL: cython_lint-0.16.4-py3-none-any.whl
  • Upload date:
  • Size: 12.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for cython_lint-0.16.4-py3-none-any.whl
Algorithm Hash digest
SHA256 14376549783eac3783913c0dfea5a943ff07866d61cdd3fa5421b736e78bfdbb
MD5 98a85aead3bfac15f1551351820b6b3a
BLAKE2b-256 0f4ca87382ca778c1a7df6b7722c2974a15fccefa0ff1e6d184a53d5442a1fd8

See more details on using hashes here.

Provenance

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

Publisher: GitHub
  • Repository: MarcoGorelli/cython-lint
  • Workflow: publish_to_pypi.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: cython_lint-0.16.4-py3-none-any.whl
    • Subject digest: 14376549783eac3783913c0dfea5a943ff07866d61cdd3fa5421b736e78bfdbb
    • Transparency log index: 147938285
    • Transparency log integration time:

Supported by

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