Automatic fix for Python linting issues found by Flake8
Project description
Fix8
Automatic fix for Python linting issues found by Flake8.
Fixes
F401
: Unused imports are removed. (If doing so would create a blank line at the start of the file then the next line is also removed).C812
,C813
,C814
,C815
,C816
: Trailing commas are addedFA100
: Future annotation imports are added.LBL001
: Leading blank lines are removed.
Install
pip install fix8
Configuration
Fix8 will only fix issues that flake8 finds, so your existing flake8 configuration (including which plugins you have installed) will determine what gets fixed.
Usage
fix8
wraps flake8
, so takes the same arguments. The easist way to use it is
to pass the files or directories you want fixed directly to it:
fix8 project/ that.py this.py
Wrappers
If you have a large project you may want to wrap it, something like this:
fix8-local() {
git diff --name-only --diff-filter=d | grep '\.py$' | sort --unique | xargs --no-run-if-empty fix8
}
This can be paired with isort
to do both fixes with a single command:
# Put these functions in your `.bashrc` or similar
run-py-local() {
git diff --name-only --diff-filter=d | grep '\.py$' | sort --unique | xargs --no-run-if-empty "$@"
}
fix8-local() {
run-py-local fix8 && run-py-local isort
}
# Usage is then just this, but will detect and fix any changes that might need fixing
$ fix8-local
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 fix8-0.1.7.tar.gz
.
File metadata
- Download URL: fix8-0.1.7.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b9b220d8e975ab12dffe6d6c75c857e8b66a41682c83e116cef888b06a9a266 |
|
MD5 | 8b3543e212f47f278d00f9d75381cea9 |
|
BLAKE2b-256 | aafeef20a4d96eea2b84e7fbe85af976848030e30d3b46194a170ce207f6fa5f |
Provenance
File details
Details for the file fix8-0.1.7-py2.py3-none-any.whl
.
File metadata
- Download URL: fix8-0.1.7-py2.py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94f765aee12d313b346685966a65320f60dd56cb71e8199c6c5a6fa096495568 |
|
MD5 | de6ba034c4c8d72b20e921de429b3a0b |
|
BLAKE2b-256 | 910b5883484a0d51b2d6d6bb03974902558eaaec2452f38fae0927138e0cd9b3 |