flake8 extension to force running check
Project description
flake8-force
Flake8 extension that provides force-check
option.
When this option is enabled, flake8 performs all checks even if the target file cannot be interpreted as a Python source code (e.g., when there is a syntax error in the file).
This extension was written to bring back the behavior of flake8 v3.x in flake8 v4.0+ to lint against Cython code. Note that the option is ineffective in flake8 v3.x or earlier.
Installation
pip install flake8-force
Usage
- Specify the option via the command line:
flake8 --force-check ...
. - Add
force-check = True
to the flake8 configuration file.
Tips for checking Cython code
While this extension "forces" flake8 to ignore problems with parsing Cython syntax as Python code, flake8 must be separately configured to permit Cython syntax through ignoring certain rules. The configuration below is suggested for that purpose. Some projects may not need to ignore every rule, depending on the use of Cython. The pycodestyle docs define what each rule means.
[flake8]
filename = *.py,*.pyx,*.pxd,*.pxi
ignore = E203,E225,E226,E227,E402,E741,E901,E999,W503,W504
force-check = True
Pre-commit hook
The configuration below can be used with pre-commit to install this extension alongside flake8 and enable checking Cython files. Also see the flake8 docs on version control hooks.
- repo: https://github.com/PyCQA/flake8
rev: '' # Pick a git hash / tag to point to
hooks:
- id: flake8
types: ["file"] # Override the default types (only python)
types_or: ["python", "cython"] # Support both python and cython types
additional_dependencies: ["flake8-force"] # Add this extension
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
Built Distribution
File details
Details for the file flake8-force-0.0.2.tar.gz
.
File metadata
- Download URL: flake8-force-0.0.2.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55aa38f49101431c08517d498e0dd2b491e6adedb6dbdd716b6c79d78f8bd0cf |
|
MD5 | 9758f36bdc97f933ff3a2977e6615b6d |
|
BLAKE2b-256 | 5405581e8a332cca076713131f527a564941dadf7a4f4e1cae30556d2917486f |
File details
Details for the file flake8_force-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: flake8_force-0.0.2-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc01651623964c1c4163e767347fa1bf23cf22ba9c449e344eb4e573bde46436 |
|
MD5 | f3f3feb0db0df40d632abd17763b7ecb |
|
BLAKE2b-256 | a689dd3cde459e213a92a712bc57e9890187c003c918cf3391a5b55aefe6f664 |